body {
    /* background-color: #495e4d; */
    background-image: url("../images/background/login-page-background.png");
    background-size: cover;
}

.form-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 100vh; */
    margin-top: 110px;
}

.form-card {
    box-sizing: border-box;
    width: 500px;
    padding: 30px;
    background-color: #fff;
    box-shadow:
        0 2px 6px rgb(0, 0, 0, 0.2),
        0 4px 8px rgb(0, 0, 0, 0.3);
}

.form-container h2 {
    margin: 50px 0;
    color: #333;
    font-size: 32px;
    font-weight: bold;
}

.form-container label {
    display: block;
    margin-bottom: 8px;
    text-align: left;
    color: #333;
    font-size: 1.1rem;
    font-weight: bold;
}

.form-container input {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 16px;
    padding: 10px;
    border: none;
    /* Add this line for the underline effect */
    border-bottom: 2px solid #495e4d;
    outline: none;
    font-size: 20px;
}

.form-link-container {
    text-align: right;
}

#forgot-password-login {
    display: block;
    width: auto;
    text-decoration: none;
    color: #495e4d;
}
#new-user {
    display: inline;
    width: auto;
    text-decoration: none;
    color: #495e4d;
}
#forgot-password-login:hover {
    color: #000;
    font-weight: bold;
}
#new-user:hover {
    color: #000;
    font-weight: bold;
}

.form-container button {
    display: block;
    width: 100%;
    margin: 25px auto;
    padding: 15px;
    cursor: pointer;
    color: #fff;
    border: none;
    border-radius: 10px;
    background-color: #495e4d;
    font-size: 18px;
    font-weight: bold;
}

.form-container button:hover {
    color: #fff;
    background-color: #333;
}

.error-msg {
    margin: 10px 0;
    padding: 15px;
    text-align: center;
    color: #d32f2f;
    border-radius: 10px;
    /* background-color: #D32F2F; */
    font-size: 18px;
    font-weight: bold;
}

#alt-password-reset-button {
    display: none;
}

@media screen and (max-width: 500px) {
    .login-container {
        margin-top: 40px;
    }

    .login-container #password-reset-button {
        display: none;
    }

    .login-container #alt-password-reset-button {
        display: inline;
    }
}
