* {
    box-sizing: border-box;
}

.okta-sign-in {
    background-color: #fff;
    box-shadow: 0 2px 0 rgba(175, 175, 175, 0.12);
    box-shadow: 0 0 40px 4px #111118;
    position: absolute;
    top: 33%;
    left: 50%;
    margin-top: -245px;
    margin-left: -200px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
}

.okta-sign-in-header {
    display: flex;
    place-content: center;

}

.okta-sign-in-logo {
    max-height: 179px;
    max-width: 398px;
    -webkit-border-radius: 7px 7px 0px 0px;
    -moz-border-radius: 7px 7px 0px 0px;
    border-radius: 7px 7px 0px 0px;
}

.okta-sign-in-formWrapper {
    padding: 20px 40px 30px 40px;
}

.okta-sign-in-inner {
    position: relative;
}

.okta-sign-in-button {
    color: #fff;
    background: #104d68;
    border-color: #104d68;
    box-shadow: rgba(0, 0, 0, 0.15) 0 1px 0, rgba(255, 255, 255, 0.1) 0 1px 0 0 inset;
    font: 14px arial;
    letter-spacing: 1px;
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
    width: 100%;
}

.okta-sign-in-button:hover{
    background: #0a3142;
}

.auth0-lock-overlay {
    background: radial-gradient(#40404b, #111118) rgba(34, 34, 40, 0.94);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: -1;
    opacity: 0.9;
    -webkit-transition: opacity 0.3s ease-in 0s;
    transition: opacity 0.3s ease-in 0s;
}

.poweredBy {
    bottom: 20px;
    right: 60px;
    position: absolute;
    height: 100px;
    width: 209px;
}

input {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font: 13px arial;
    border: 1px solid black;
    outline-color: rgb(94, 94, 94);
    width: 100%;
}

.btn:hover {
    color: white !important;
}

.loggingIn {
    display: none;
    position: absolute;
    background: white;
    z-index: 99999;
    height: 229px;
    width: 324px;
    text-align: center;
    top: 201px;
    left: 39px;
}

.loggingInText {
    color: #2454a4;
    font: 40px arial;
    margin-top: 50px;
}

.loggingInGifWrapper {
    margin-top: 25px;
}

.wrongUserPass {
    position: absolute;
    color: red;
    display: none;
}

.loginLessSign {
    display: none;
}

#mfaCode {
    opacity: 0;
    z-index: 0;
    height: 0;
    margin: 0;
}

#mfaForm h1, h2, h3, h4, h5, h6, p, label {
    color: black;
}

#mfaForm label {
    text-align: left;
}

#mfaDigits {
    width: 100%;
    justify-content: center;
    gap: 1em;
    z-index: 999999;
}

.digit {
    height: 5em;
    width: 4.5em;
    min-width: 3.5em;
    border: 2px solid black;
    border-radius: 1em;
    background-color: #f8f8f8;
    display: grid;
    place-content: center;
}

.focused {
    border: 4px solid cornflowerblue;
}

@media screen and (max-width: 992px) {
    #mfaDigits {
        gap: 0;
    }

    .digit {
        width: 5em;
    }
}

.digit > span {
    font-size: xxx-large;
}