/* ==========================================================================
   BMB affiliate auth — forget-password (extras on top of login.css)
   ========================================================================== */

.auth-frame--single {
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 0;
}

.auth-card-wrap--center {
    width: 100%;
    justify-content: center;
}

.auth-card-stack {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.auth-brand--center {
    display: flex;
    justify-content: center;
    margin-bottom: 4px;
}

.auth-card__head--center {
    text-align: center;
    margin-bottom: 22px;
}

.auth-card__head--center .auth-eyebrow {
    margin-bottom: 16px;
}

.auth-eyebrow--ghost {
    color: var(--auth-blue);
    background: rgba(0, 94, 184, 0.08);
    border-color: rgba(0, 94, 184, 0.18);
}

.auth-eyebrow--ghost i {
    color: var(--auth-blue);
    font-size: 11px;
}

/* Recovery steps row */
.recovery-steps {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px dashed var(--auth-line);
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.recovery-step {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(0, 94, 184, 0.04);
    transition: background 0.18s ease;
}

.recovery-step:hover {
    background: rgba(0, 94, 184, 0.08);
}

.recovery-step__num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #005eb8 0%, #3b82f6 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 94, 184, 0.3);
}

.recovery-step > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.recovery-step strong {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--auth-ink-1);
}

.recovery-step span {
    font-size: 12.5px;
    color: var(--auth-ink-3);
    line-height: 1.45;
}

.auth-help {
    margin-top: 8px;
    text-align: center;
    font-size: 13px;
    color: var(--auth-ink-3);
}

.auth-help a {
    color: var(--auth-blue);
    font-weight: 600;
}

.auth-help a:hover {
    color: var(--auth-blue-2);
    text-decoration: underline;
}

/* Loader overlay */
.bmb-loader {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 31, 61, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.bmb-loader[style*="display:flex"],
.bmb-loader.show {
    display: flex !important;
}

.bmb-loader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    color: #ffffff;
}

.bmb-loader__spinner {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top-color: #ffffff;
    animation: bmbSpin 1s linear infinite;
}

.bmb-loader__text {
    font-size: 13px;
    letter-spacing: 0.02em;
}

@keyframes bmbSpin {
    to { transform: rotate(360deg); }
}

@media (max-width: 640px) {
    .recovery-step__num { width: 24px; height: 24px; font-size: 11px; }
    .recovery-step strong { font-size: 13px; }
    .recovery-step span { font-size: 12px; }
}
