.auth-flow-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center
}

.auth-flow-loader__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5)
}

.loader {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    border: 3px solid #888;
    border-top-color: #d32f2f;
    box-sizing: border-box;
    animation: rotation .7s linear infinite
}

@keyframes rotation {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.error-message-container__clave-virtual {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    margin-left: 7px;
    font-size: 13px;
    color: #d32f2f
}

.error-message-container__clave-virtual.sf-hidden {
    display: none
}

.error-icon-warn {
    font-size: 15px;
    color: #999;
    line-height: 1
}

.input-error {
    border: 1.5px solid #d32f2f !important
}