@charset "UTF-8";

#wrkLoginPanel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    font-family: "Open Sans", "G-Open Sans-n4", Arial, sans-serif;

    display: flex;
    align-content: space-around;
    justify-content: center;
    flex-direction: column;
}

#loginprcfrm {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.consoleLogo {
    height: 65px;
    width: 100%;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-bottom:20px;
}

#progressBox, #maxLoginUserPass, #maxLoginMFARegistration, #maxLoginMFAChallenge {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#progressBox {
    width: 350px;
    height: 143px;
}

.logMfaMessage {
    font-size: 16px;
    text-align: center;
}

.maxLoginFormInput {
    height: 33px;
    margin: 0;
    padding: 0 0 0 4px;
    border-radius: 2px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.42), inset 0 0 3px rgba(0, 0, 0, 0.42);
    font-size: 14px;
}

.maxLoginFormInput#log_mfa_registration, .maxLoginFormInput#log_mfa_challenge {
    margin: 10px auto 0;
    width: 100px;
    height: 40px;
    text-align: center;
    font-size: 20px;
}

.maxLoginFormInput#log_user {
    width: 200px;
}

.maxLoginFormInput#log_pass {
    margin-top: 5px;
    margin-bottom: 1px;
    width: 200px;
}

.maxLoginActions {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.cmdLoginButton {
    cursor: pointer;
    display: block;
    margin: 10px;
    text-align: center;
    padding: 11px 32px;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
    background: #142f3a;
}

#logMfaQRCode {
    background-color: white;
    padding: 20px;
    width: fit-content;
    margin-top: 20px;
    margin-bottom: 20px;
}

#progressBar {
    width: 0;
    height: 10px;
    background-color: #142f3a;
}

#progressTitle {
    height: 35px;
    font-size: 20px;
    margin-top: 0;
    text-align: center;
    font-family: "Open Sans", "G-Open Sans-n4", Arial, sans-serif;
    color: #FFF;
}

#progressBarBkgd {
    border-radius: 5px;
    height: 10px;
    background-color: #f1f1f1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progressBarAni {
    -webkit-animation: prgPipeAni 1s 1s infinite alternate backwards;
    -moz-animation: prgPipeAni 1s 1s infinite alternate backwards;
    -o-animation: prgPipeAni 1s 1s infinite alternate backwards;
    animation: prgPipeAni 1s 1s infinite alternate backwards;
    transform-origin: 50% 50%;
}

@-webkit-keyframes prgPipeAni {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@-moz-keyframes prgPipeAni {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@-o-keyframes prgPipeAni {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

@keyframes prgPipeAni {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

.radPulseWhite {

    background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0) 100%);
    background-size: 25% 100%;
    background-position: -15% 0;
    background-repeat: no-repeat;

    -webkit-animation-duration: 3.6s;
    -moz-animation-duration: 3.6s;
    -o-animation-duration: 3.6s;
    animation-duration: 3.6s;
    -webkit-animation-name: radPulseAniKeys;
    -moz-animation-name: radPulseAniKeys;
    -o-animation-name: radPulseAniKeys;
    animation-name: radPulseAniKeys;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    -moz-animation-timing-function: ease-in-out;
    -o-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
}

@-webkit-keyframes radPulseAniKeys {
    from {
        background-position: -15% 0
    }

    50% {
        background-position: 115% 0
    }
    to {
        background-position: -15% 0
    }
}

@-moz-keyframes radPulseAniKeys {
    from {
        background-position: -15% 0
    }

    50% {
        background-position: 115% 0
    }
    to {
        background-position: -15% 0
    }
}

@-o-keyframes radPulseAniKeys {
    from {
        background-position: -15% 0
    }

    50% {
        background-position: 115% 0
    }
    to {
        background-position: -15% 0
    }
}

@keyframes radPulseAniKeys {
    from {
        background-position: -15% 0
    }

    50% {
        background-position: 115% 0
    }
    to {
        background-position: -15% 0
    }
} 
