/****** This css file includes the style of shared Multi-Authantification *******/
html {
    font-size: 10px;
}

#loginForm {
    padding: 4rem;
    width: 70%;
    min-width: 30rem;
    max-width: 80rem;
    opacity: 0.95;
    background-color: #ffffff;
    /* border: 0.1rem solid #aaaaaa; */
    margin: 20vh auto 0 auto;
}

#loginForm h1,
#loginForm h2 {
    text-align: center;
}

#loginForm input {
    padding: 1rem;
    width: 100%;
    font-size: 1.7rem;
    border-radius: 0;
    box-sizing: border-box;
    border: 0.1rem solid #f6f6f6;
}

#loginForm input:focus-visible {
    outline-color: #f6f6f6 !important;
}

#loginForm input.invalid {
    background-color: #ffdddd !important;
    /* Mark input boxes that gets an error on validation: */
}

#loginForm p {
    margin: 1rem 0;
}

#loginForm a {
    color: #428bca;
    text-decoration: underline;
    font-size: 1.4rem;
    font-weight: normal;
}

#loginForm a:hover {
    color: #2a6496;
}

#loginForm .red {
    color: #EF392A
}

#loginForm .green {
    color: #A6CE39
}

#loginForm .iasp_error {
    display: block;
    margin-top: 1rem;
    font-size: 1.3rem;
    color: #f44;
}

#loginForm .success {
    color: #21db29;
}


/* Top Login Link */

#top_loginbox .mfa_loginlink {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}


/* Hide all steps by default: */

#loginForm .tab {
    display: none;
    font-size: 1.7rem;
    color: #333333;
}

#loginForm button {
    border: none;
    padding: 1rem 2rem;
    font-size: 1em;
    cursor: pointer;
    border-radius: 0;
    background-color: #428bca;
    color: #ffffff !important;
    box-shadow: none;
    text-shadow: none;
    font-weight: normal;
    display: inline-block;
    vertical-align: middle;
}

#loginForm #prevBtn {
    background-color: #bbbbbb;
}

#loginForm .progress_steps {
    text-align: center;
    margin-top: 4rem;
}


/* Make circles that indicate the steps of the form: */

#loginForm .step {
    height: 1.5rem;
    width: 1.5rem;
    margin: 0 0.2rem;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
    /* This is default progress step bg opacity and finish state progress step opacity*/
    background-color: #bbbbbb;
    /* This is default progress step bg color*/
}

#loginForm .step.finish {
    background-color: #428bca;
    /* opacity will be inherited from base */
}

#loginForm .step.active {
    background-color: #428bca;
    /* opacity will be inherited from base */
}

#loginForm .step.active {
    opacity: 1;
    /* This is default progress step bg color*/
}


/******************** Reset page starts *****************************/

#loginForm .tab {
    min-height: 12rem;
    height: auto;
    line-height: normal;
}

#loginForm .tab.active {
    display: block;
}

#loginForm .tab.active p.iasp_note {
    color: red;
    margin: 0.5rem 0 0 0;
    padding: 0;
    text-align: left;
}

#loginForm .tab.active p.iasp_note::before {
    content: "\f06a";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    padding-right: 0.5rem;
}


/******************** Reset page ends *****************************/


/******************** Page loader starts *****************************/
.no_display {
    display: none !important;
}

.page-loader {
    background: #000;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    opacity: 0.70;
    filter: alpha(opacity=70);
}

.page-loader-inner {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    padding: 2rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: #00BCD4;
    font-size: 1.2rem;
    font-weight: bold;
}

.loading-text {
    margin-bottom: 1rem;
}

.spinner {
    position: relative;
    height: 4rem;
    width: 4rem;
    color: #00BCD4 !important;
    margin: auto;
}

@keyframes spinner-grow {
    0% {
        transform: scale(0);
    }

    50% {
        opacity: 1;
    }
}

.spinner-grow {
    display: inline-block;
    width: 4rem;
    height: 4rem;
    vertical-align: text-bottom;
    background-color: #00BCD4;
    border-radius: 50%;
    opacity: 0;
    animation: spinner-grow .75s linear infinite;
}


/******************** Page loader ends **************************************/