.tf-mfa-modal {
    border: none;
    border-radius: 22px;
    overflow: hidden;
    padding: 10px;
}

/* -----------------------------
   MODERN SEGMENTED TAB SWITCH
------------------------------*/
.tf-auth-switch {
    display: flex;
    width: 100%;
    background: #eef2f7;
    border-radius: 14px;
    padding: 4px;
    gap: 4px;
}

.tf-auth-switch__btn {
    flex: 1;
    border: none;
    background: transparent;
    border-radius: 12px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 700;
    color: #6b7280;
    transition: all .25s ease;
}

    .tf-auth-switch__btn:hover {
        color: #0d6efd;
    }

    /*.tf-auth-switch__btn.active {
        background: #ffffff;
        color: #0d6efd;
        box-shadow: 0 4px 12px rgba(0,0,0,.08);
    }*/

    .tf-auth-switch__btn.active {
        background: #ffffff;
        color: #21bdd3;
        box-shadow: 0 4px 12px rgba(0,0,0,.08);
    }

/* -----------------------------
   OTP BOXES INLINE BEAUTIFUL
------------------------------*/
.tf-otp-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
    margin-top: 10px;
}

.tf-otp-box {
    width: 52px;
    height: 58px;
    border: 1px solid #d8dee8;
    border-radius: 14px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    color: #111827;
    background: #fff;
    outline: none;
    transition: all .20s ease;
}

    .tf-otp-box:focus {
        border-color: #0d6efd;
        box-shadow: 0 0 0 4px rgba(13,110,253,.12);
        transform: translateY(-1px);
    }

    .tf-otp-box.filled {
        border-color: #0d6efd;
    }

/* -----------------------------
   BACKUP INPUT
------------------------------*/
#backupCode {
    height: 52px;
    border-radius: 14px;
    padding-left: 16px;
    font-size: 15px;
}

/* -----------------------------
   VERIFY BUTTON
------------------------------*/
#verifyMfaBtn {
    height: 52px;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
}

/* -----------------------------
   MOBILE
------------------------------*/
@media (max-width: 576px) {

    .tf-otp-wrap {
        gap: 6px;
    }

    .tf-otp-box {
        width: 44px;
        height: 52px;
        font-size: 20px;
    }

    .tf-auth-switch__btn {
        font-size: 12px;
        padding: 10px 6px;
    }
}