/* =========================================================
   BRAVO CRM — VERIFY 2FA FORM  (verify__*)
   (Verify2faControl / Purchase & Send 2FA step)
   ========================================================= */

/* ── WRAPPER ─────────────────────────────────── */
.verify {
    max-width: 520px;
    margin: 0 auto;
}

/* ── CARD ────────────────────────────────────── */
.verify__card {
    background: #fff;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* ── HEAD ────────────────────────────────────── */
.verify__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.verify__kicker {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #64748b;
}

.verify__title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-top: 4px;
}

.verify__resend {
    font-size: 12px;
    color: #2563eb;
    text-decoration: none;
}
.verify__resend:hover { text-decoration: underline; }

/* ── FORM ────────────────────────────────────── */
.verify__form {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.verify__block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.verify__label {
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
}

.verify__input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid rgba(15,23,42,.12);
    font-size: 14px;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.verify__input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37,99,235,.1);
}

.verify__hint  { font-size: 12px; color: #64748b; }
.verify__error { font-size: 12px; color: #dc2626; font-weight: 500; }

/* ── BUTTONS ─────────────────────────────────── */
.verify__actions {
    display: flex;
    gap: 12px;
}

.verify__btn {
    flex: 1;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: opacity .15s ease, background .15s ease;
    text-decoration: none;
}

.verify__btn--ghost {
    background: #f1f5f9;
    color: #0f172a;
}
.verify__btn--ghost:hover { background: #e2e8f0; }

.verify__btn--primary {
    background: linear-gradient(135deg, #EDC016 0%, #F28739 100%);
    color: #fff;
}
.verify__btn--primary:hover { opacity: .9; }

/* ── ALERTS ──────────────────────────────────── */
.verify__alert {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 13px;
    margin-bottom: 18px;
}
.verify__alert--success  { background: #dcfce7; color: #166534; }
.verify__alert--error,
.verify__alert--danger   { background: #fee2e2; color: #991b1b; }

/* ── DARK THEME ──────────────────────────────── */
:root.theme-dark .verify__card {
    background: var(--surface, #1e2538);
    border-color: rgba(255,255,255,.08);
}
:root.theme-dark .verify__title,
:root.theme-dark .verify__label { color: var(--text, #f1f5f9); }
:root.theme-dark .verify__input {
    background: var(--surface-2, #2a3044);
    border-color: rgba(255,255,255,.12);
    color: var(--text, #f1f5f9);
}
:root.theme-dark .verify__btn--ghost {
    background: var(--surface-2, #2a3044);
    color: var(--text, #f1f5f9);
}

