#login-title {
    display: grid;
    justify-content: center;
    /*margin-top: 30px;*/
    margin-bottom: 20px;
}

#login-title h1 {
    font-size: 16pt;
    margin: 0;
}

#login p {
    display: grid;
    justify-items: left;
    width: 221px;
}

#login label {
    font-weight: bold;
    padding-bottom: 10px;
    font-size: 12pt;
}

#login input {
    width: 221px;
    height: 30px;
    border-radius: 5px;
    border: 1px solid;
    padding-left: 8px;
}

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

.forgot {
    color: black;
    font-size: 0.9em;
}

#login li {
    padding-left: 25px;
    padding-right: 25px;
    margin-top: -25px;
    list-style-type: none;
}

form {
    margin-bottom: 15px;
}

#login {
    border: 1px solid #bdbdbd;
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.85);
    width: 280px;
    height: auto;
    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);
    padding: 30px;
}

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

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

#loginButton {
    margin: 15px 0;
    background-color: #9D2235;
    border: 2px solid rgba(255, 255, 255, 0);
    border-radius: 5px;
    color: white;
    padding: 5px 0;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    width: 100px;
    outline: none;
}

/* reverse on hover */
#loginButton:hover, #loginButton:focus {
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid #9D2235;
    color: #9D2235;
}

#loginButton:focus:not(:focus-visible) {
    background: #9D2235;
    color: white;
}

.sso-login-button {
    margin: auto;
    background-color: #9D2235;
    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 {
    background-color: rgba(255, 255, 255, 0);
    border: 2px solid #9D2235;
    color: #9D2235;
    text-decoration: none;
}


/* Login Error Fix */

form ul {
    font-size: 10pt;
}

/* ---- Media Queries Start ---- */

/* Mobile Medium */

@media screen and (min-width: 375px) {
    #login {
        width: 320px;
    }

}

/* End of Mobile Medium */

/* In between size */

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

    #login {
        /*width: 375px;*/
    }

    #loginButton {
        padding: 5px 25px;
    }
}

/* End of In between size */

/* Tablet */

@media screen and (min-width: 768px) {
    #container {
        min-height: 90vh;
    }
}

/* End of Tablet */

/* Laptop */

@media screen and (min-width: 1024px) {
    #login {
        /*width: 440px;*/
        width: 375px;
    }

    #login-title {
        /*margin-top: 40px;*/
    }

    #login-title h1 {
        font-size: 20pt;
    }

    #login p {
        width: 258px;
    }

    #login input {
        width: 258px;
    }

    form {
        grid-row-gap: 20px;
    }

    #loginButton {
        margin: 25px 0;
    }
}

/* End of Laptop */

/* ---- Media Queries End ---- */
