/* ════════════════════════════════════════════════════════════════════════
   cyclonePORT Nexus — Password Reset card
   Styling for the reset panel on a user's profile (frontend/password-reset-ui.js)
   ════════════════════════════════════════════════════════════════════════ */

/* Themed via CSS variables rather than inline fallbacks, so the panel follows
   the active theme instead of being light-only. */
.password-reset-card {
    grid-column: 1 / -1;
    padding: 16px;
    background: var(--bg-input);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.password-reset-card__description {
    margin: 0 0 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.password-reset-card__label {
    display: block;
    margin-bottom: 6px;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.password-reset-card__password-group {
    margin-bottom: 16px;
}

.password-reset-card__password-group .form-control {
    max-width: 420px;
    background: var(--bg-surface);
}

.password-reset-card__generate {
    margin-top: 8px;
}

.password-reset-card__generate small {
    display: block;
    margin-top: 6px;
    color: var(--text-secondary);
}
