/* Account Recovery — additional styles on top of login.css */

/* ── Icon wrapper ──────────────────────────────────────────────────────────── */
.recover-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.7);
}

.recover-icon-wrap--success {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
}

/* ── Inline email highlight ────────────────────────────────────────────────── */
.recover-email-highlight {
    color: var(--text-primary);
    font-weight: 600;
}

/* ── Hint text + inline button ─────────────────────────────────────────────── */
.recover-hint {
    margin-top: var(--spacing-lg);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

.recover-link-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.recover-link-btn:hover {
    color: var(--text-primary);
}

/* ── Footer links below form ───────────────────────────────────────────────── */
.recover-foot-link {
    display: block;
    margin-top: var(--spacing-xl);
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    line-height: 1.6;
}

.recover-foot-link a {
    color: var(--text-secondary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.recover-foot-link a:hover {
    color: var(--text-primary);
}

/* ── Sign-in button on success step ───────────────────────────────────────── */
.recover-signin-btn {
    display: inline-flex;
    text-decoration: none;
    margin-top: var(--spacing-xl);
}
