#signin-username::-webkit-inner-spin-button,
#signin-username::-webkit-outer-spin-button {
    -webkit-appearance: none;
    opacity: 0;
    pointer-events: none;
}

#signin-username {
    -moz-appearance: textfield;
}

.li-min {
    line-height: 15px;
}

.input-box .icon-label {
    position: absolute;
    inset-block-start: 6px;
    inset-inline-start: 9px;
    z-index: 5;
}

.step-wrapper {
    padding: 20px 0;
    display: none;
}

.step-wrapper.active {
    display: block;
}

.step-indicator {
    border-collapse: separate;
    display: table;
    position: relative;
    table-layout: fixed;
    text-align: center;
    vertical-align: middle;
    z-index: 999;
}

.step-indicator:after {
    background-color: var(--primary-color);
    content: "";
    display: block;
    height: 7px;
    position: absolute;
    width: 80%;
    top: 17px;
    left: 10%;
    z-index: 0;
}

.step-indicator li {
    display: table-cell;
    position: relative;
    float: none;
    padding: 0;
    width: 25%;

}

.step-indicator li:after {
    background-color: #ccc;
    content: "";
    display: block;
    height: 7px;
    position: absolute;
    width: 100%;
    top: 17px;
    z-index: 1;
}

.step-indicator li.active:after {
    background-color: #ccc;
    animation: growWidth 1s forwards;
}

.step-indicator li:after {
    right: 50%;
}

.step-indicator li:first-child:after {
    display: none;
}

.step-indicator li.active .step {
    animation: step 1s forwards;
}

.popUp {
    animation: popUp 0.7s forwards;
}

.popUp2 {
    animation: popUp2 0.7s forwards;
}

@keyframes popUp {
    0% {
        transform: scale(0.5);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes popUp2 {
    0% {
        transform: scale(0.5);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

    100% {
        width: 0%;
    }
}

@keyframes step {
    0% {
        border-color: #ccc;
        transform: scale(1);
    }

    50% {
        border-color: #ccc;
        transform: scale(1.3);
    }

    75% {
        border-color: #ccc;
    }

    100% {
        transform: scale(1);
        border-color: var(--primary-color);
    }
}

.step-indicator li.active .caption {
    color: var(--primary-color) !important;
}

.step-indicator li.active .las {
    transition: color 1.5s;
    color: var(--primary-color);
}

.step-indicator .step {
    background-color: #fff;
    border-radius: 50%;
    border: 5px solid #ccc;
    color: #ccc;
    font-size: 24px;
    height: 42px;
    line-height: 42px;
    margin: 0 auto;
    position: relative;
    width: 42px;
    z-index: 2;
}

.step-indicator .caption {
    color: var(--text-muted) !important;
}

.backup-code {
    display: block;
    background: #f8f9fa;
    padding: 0.5rem;
    border-radius: 0.25rem;
    font-family: monospace;
    font-size: 0.9rem;
}