body, html {
    height: 100%; /* Full height for the body and html */
    width: 100%;
    margin: 0; /* Remove default margin */
    display: flex;
    justify-content: center; /* Center content horizontally */
    align-items: center; /* Center content vertically */
    background-color: var(--secondary-color-dark);
    overflow-x: hidden;
}

#login {
    display: flex;
    flex-direction: column; /* Stack children vertically */
    justify-content: center;
    align-items: center;
    background-color: var(--secondary-color-light);
    width: 40%;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    padding: 20px; /* Add padding for better spacing */
}

#login .container {
    width: 100%; /* Full width of the parent */
}


#login .row {
    text-align: left;
    padding-left: 0px;
    padding-right: 0px;
}

#login .col-md-6 {
    max-width: 100%; /* Allow full width */
    flex: 0 0 100%; /* Flex settings for proper sizing */
    padding: 0 15px; /* Adjust padding as needed */
}

#login .signup-text {
    margin-top: 20px; /* Adjust as needed */
    
}

#login.signup-text a {
    color: var(--link-font);
}

#login .full-logo {
    max-width: 100%; /* Ensures the logo doesn't exceed container's width */
    height: auto; /* Maintains aspect ratio */
    width: 14rem; /* Avoids stretching */
}
#login .full-logo-client {
    max-width: 100%;
    height: auto;
    width: 18rem;
}

  #login .btn{
    width: 100%;
    font-size: .8rem;
}


.bottom-links {
    display: flex;
    gap: 2.5rem;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}


.brandingCont {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: .4rem;
    max-width: 100%; /* Ensure it doesn't overflow */
    text-align: left; /* Center the content for non-configured branding */
}

/* IPHONE PORTATRAIT */
@media (max-width: 768px) {
    #login {
        width: 90%;
        padding: 20px;
    }
}
    
    /* responsive styles for landascape phones */
@media only screen 
    and (min-device-width : 390px) 
    and (max-device-width : 940px) 
    and (orientation : landscape) {
        #login {
            width: 80%;
            padding: 20px;
            margin-top: 15rem;
            margin-bottom: 5rem;
        }
  
}
    
    /* Styles for screens larger than 1920 pixels wide (typical for large monitors) */
@media screen and (min-width: 1720px) {
  
}
    