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

form p input {
    width: 200px;
}

#login h1 {
    /*margin-bottom: 35px;*/
}

#login li {
    font-size: 15px;
    list-style-type: none;
    max-width: 200px
}

#container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("/static/common/img/login-hero.2d9f94d952c2.jpg");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

#login {
    border: 1px solid #bdbdbd;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 35px 35px 35px;
    max-width: 370px;
    color: black;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}

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

form label {
    color: black;
    font-size: 16px;
    text-align: left;
    padding-bottom: 8px;
}

.errorlist {
    color: #DF0000;
}

#loginButton {
    cursor: pointer;
    padding: 10px 25px;
    margin-top: 15px;
    margin-bottom: 20px;
    font-weight: bold;
    font-size: 16px;
    background-color: #006A66;
    border: 2px solid #006A66;
    color: white;
    border-radius: 5px;
}

#loginButton:hover, #loginButton:focus {
    background: transparent;
    color: black;
    transition: 0.5s;
    outline: none;
}

#loginButton:focus:not(:focus-visible) {
    background: #006A66;
    color: white;
    transition: none;
}

.forgot {
    color: #006A66;
    margin-bottom: 20px;
}

.forgot:focus {
    outline: 2px solid black;
}

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

.sso-login-container h2 {
    margin: 0;
    font-size: 24px;
}

.sso-login-container hr {
    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: #006A66;
    border: 2px solid #006A66;
    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 {
    background: transparent;
    color: black;
    transition: 0.5s;
    outline: none;
    text-decoration: none;
}

.sso-login-button:focus:not(:focus-visible) {
    background: #006A66;
    color: white;
    transition: none;
}

/* Media Queries */

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

/* Tablet */
@media screen and (min-width: 768px) {
    #login {
        padding: 10px 80px 35px 80px;
    }

}

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

@media screen and (max-width: 415px) {
    #container {
        min-height: 80vh;
    }
}

@media screen and (max-width: 350px) {
    .main-content label {
        font-size: 0.9em;
    }
}