/* CSS Document */

/* Container to center the form on the page */
.centered-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 100vh; /* Full viewport height */
}

/* Styling for the login form border */
#login_border {
    width: 100%;
    max-width: 350px; /* Sets the maximum width of the form */
    margin: auto; /* Centers the form in the available space */
    padding: 40px; /* Spacing inside the form */
    border: 1px solid #cccccc; /* Light grey border */
    border-radius: 5px; /* Rounded corners for the form */
    background: #FFFFFF; /* White background color */
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Shadow for depth */
}

/* Styling for input fields within the form */
#login_border input[type=text],
#login_border input[type=password],
#login_border input[type=email] {
    width: 100%; /* Full width to fill parent */
    margin-bottom: 10px; /* Margin between form fields */
    padding: 10px; /* Padding inside the input fields */
    border: 1px solid #cccccc; /* Border for input fields */
    border-radius: 5px; /* Rounded corners for input fields */
    font-size: 12px;
}

/* Styling for buttons within the form */
#login_border button {
    width: 100%; /* Full width of the form */
    padding: 10px 0; /* Vertical padding for button height */
    border-radius: 4px; /* Rounded corners for button */
    cursor: pointer; /* Pointer cursor on hover */
}

/* Login button color */
#loginPs_submit {
    background-color: #2ac8c8; /* Teal background */
    color: #ffffff; /* White text */
    border: none; /* Optional: removes the border */
}

#signuplink {
    text-decoration: none;
    color: #2ac8c8;
}

#loginformchecklabel {
    font-size: 14px; /* Change font size */
    text-align: center; /* Center text for */
}

/* Forgot Password */
.form-text {
    display: block;
    text-align: justify;
    -moz-text-align-last: left;
         text-align-last: left;
}

.text-muted {
    color: #6c757d;
}

.passReset {
    cursor: pointer; /* Add a pointer cursor on hover */
    margin-top: -8px;
    font-size: x-small;
}
