.forgot {
    color: #c00000;
    font-size: 0.9em;
    height: fit-content;
}

#login li {
    list-style-type: none;
    padding: 0 20px 0 20px;
    text-align: center;
    font-size: 14px;
    color: #d30000;
}

#container {
    display: flex;
    justify-content: center;
    background-image: url("/static/common/img/woman-tying-shoes.2d3a5005c71d.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

form {
    margin-bottom: 15px;
    display: grid;
    justify-items: center;
}

#form-grid {
    display: grid;
    grid-row-gap: 12px;
}

#login {
    border: 1px solid #bdbdbd;
    display: grid;
    justify-content: center;
    justify-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    width: 80vw;
    max-width: 375px;
    height: fit-content;
    padding-bottom: 35px;
    margin-top: 100px;
    margin-bottom: 150px;
    color: black;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

#login h1 {
    font-size: 2em;
}

.main-content {
    margin-left: 0;
    margin-right: 0;
}

label {
    color: black;
    font-size: 1em;
}

#loginButton {
    cursor: pointer;
    background: #c00000;
    border: none;
    color: white;
    width: 80px;
    height: 40px;
    margin-top: 30px;
    font-weight: bold;
    font-size: 1em;
}

#form-grid p {
    display: grid;
    justify-content: center;
    margin: 0;
}

#form-grid p input {
    height: 26px;
    width: 225px;
    border-radius: 4px;
    border: 1px solid black;
    padding: 0 0 0 4px;
}

#form-grid p label {
    padding-bottom: 6px;
    display: flex;
}


.sso-login-container {
    margin: 30px 0 10px 0;
}

.sso-login-container h2 {
    margin: 0;
}

.sso-login-container hr {
    /*max-width: 75%;*/
    margin: 0 auto 20px auto;
    border: 0;
    background: black;
    height: 2px;
}

.sso-login-container div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sso-login-button {
    margin: auto;
    background: #c00000;
    border: 2px solid rgba(255, 255, 255, 0);
    /*border-radius: 5px;*/
    color: white;
    text-align: center;
    text-decoration: none;
    display: block;
    font-size: 16px;
    font-weight: bold;
    width: max-content;
    outline: none;
    padding: 10px 20px;
}

.sso-login-button:hover, .sso-login-button:focus, #loginButton:hover, #loginButton:focus {
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid #c00000;
    color: #c00000;
    text-decoration: none;
}

/* Media Queries */

/* Laptop */
@media screen and (max-width: 1024px) {

}

/* Tablet */
@media screen and (max-width: 768px) {

}

@media screen and (max-width: 500px) {

    #login h1 {
        font-size: 1.6em;
        margin-top: 25px;
    }
}

@media screen and (max-width: 415px) {

    #container {
        min-height: 75vh !important;
    }

    #login {
        margin-top: 115px;
    }
}

@media screen and (max-width: 375px) {
    #form-grid p input {
        width: 200px;
    }
}