main {
    margin-top: 0;
    margin-bottom: 0;
    min-height: 60vh;
    background: #A8A8A8;
    display: grid;
    justify-content: center;
    align-items: center;
}

#login-box {
    width: 280px;
    background: #ffffff;
    padding: 20px 0 10px 0;
    border-radius: 5px;
}

h1 {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.sso-login-button {
    margin: 20px 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;
}

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

form input {
    width: 220px;
    height: 28px;
    border-radius: 5px;
    border: 1px solid black;
    padding-left: 5px;
    margin-bottom: 15px;
}

form label {
    font-size: 15px;
    font-weight: bold;
    display: block;
    padding-bottom: 8px;
}

form button {
    width: 90px;
    height: 40px;
    background: #9D2235;
    color: white;
    border: none;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    border-radius: 5px;
    margin-top: 25px;
    cursor: pointer;
}

form button:hover, form button:focus {
    background: #ffffff;
    color: black;
    text-decoration: none !important;
    border: 2px solid #9D2235;
    outline: none;
}


form button:focus:not(:focus-visible) {
    background: #9D2235;
    color: white;
    border: 2px solid #9D2235;
}

form ul {
    list-style-type: none;
    font-size: 13px;
    text-align: center;
    margin-top: -10px;
    margin-bottom: 15px;
}

@media only screen and (min-width: 768px) {
    main {
        min-height: 80vh;
    }

    #login-box {
        width: 350px;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 35px;
    }

    form input {
        width: 250px;
    }
}

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

    main {
        min-height: 90vh;
    }
}