/* Password reset pages — shared styles */

.reset-wrap {
    width: 100%;
    max-width: 400px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px 36px 36px;
}

.reset-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.reset-sub {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 28px;
}

/* ── Fields ── */
.field { margin-bottom: 16px; }

.field-label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.input-wrap { position: relative; }

/* form-input + btn-submit + alerts from base.css */

/* ── Status icon for done/complete screens ── */
.reset-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.reset-icon.success { background: var(--green-bg); }
.reset-icon.amber   { background: var(--amber-bg);  }

.reset-icon svg { width: 22px; height: 22px; }

/* ── Back link ── */
.reset-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: 20px;
    transition: color var(--dur) var(--ease);
}

.reset-back:hover { color: var(--amber); }
.reset-back svg { width: 14px; height: 14px; }

@media (max-width: 480px) {
    .reset-wrap { padding: 28px 20px 24px; }
}
