/*
|--------------------------------------------------------------------------
| OTP SCREEN
|--------------------------------------------------------------------------
*/

#dqmate_otp_screen {
    width: 100%;
    padding-top: 15px;
    max-width: 520px;
}

.dqmate-progress-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 16px;
    border-radius: 999px;
    background: #eff6ff;
    color: #0ea5e9;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

.dqmate-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.dqmate-back-btn:hover {
    color: #0ea5e9;
}

.dqmate-stepper {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    max-width: 420px;
}
.dqmate-step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 15px;
    font-weight: 600;
}

.dqmate-step-item span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.dqmate-step-item.completed {
    color: #0ea5e9;
}

.dqmate-step-item.completed span {
    background: #080808;
    border-color: #0ea5e9;
}

.dqmate-step-item.active {
    color: #0ea5e9;
    font-weight: 700;
}

.dqmate-step-item.active span {
    background: #0ea5e9;
    color: #0e0101;
}

.dqmate-step-line {
    flex: 1;
    height: 2px;
    background: #121213;
    margin: 0 15px;
}

#dqmate_otp_screen h2 {
    margin: 0 0 15px;
    font-size: 46px;
    line-height: 1.15;
    color: #0f172a;
    font-weight: 700;
}

#dqmate_verify_email {

    width: 100%;

    box-sizing: border-box;

    display: block;

    margin-top: 12px;

    padding: 14px 18px;

    background: #f8fafc;

    border: 1px solid #e2e8f0;

    border-radius: 12px;

    font-size: 18px;

    font-weight: 700;

    color: #0f172a;
}
.dqmate-otp-boxes {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px 0;
}

.dqmate-otp-digit {
    width: 64px;
    height: 64px;
    border: 1px solid #dbe3ee;
    border-radius: 16px;
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    outline: none;
}

.dqmate-otp-digit:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14,165,233,.12);
}

.dqmate-otp-timer {
    text-align: center;
    margin-bottom: 24px;
    color: #64748b;
    font-size: 14px;
}

#dqmate_verify_otp {
    margin-top: 10px;
}

.dqmate-resend {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #64748b;
}

.dqmate-resend a {
    color: #0ea5e9;
    font-weight: 600;
    text-decoration: none;
}

.dqmate-resend a:hover {
    text-decoration: underline;
}

.dqmate-security-note {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
    color: #475569;
    line-height: 1.8;
}

.dqmate-security-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.dqmate-security-benefits li {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 14px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
}

/*
|--------------------------------------------------------------------------
| MOBILE
|--------------------------------------------------------------------------
*/

@media (max-width: 768px) {

    #dqmate_otp_screen h2 {
        font-size: 36px;
    }

    .dqmate-otp-boxes {
        gap: 8px;
        margin: 40px 0 30px;
    }

    .dqmate-otp-digit {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }
