/* ── Password change panel ───────────────────────────────────────────────────── */

/* Strength meter */
.pw-strength {
  margin-top: 0.4rem;
  display: none;
}
.pw-strength-bar {
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  overflow: hidden;
  margin-bottom: 0.25rem;
}
.pw-strength-fill {
  height: 100%;
  border-radius: 2px;
  transition:
    width 0.3s,
    background 0.3s;
  width: 0%;
}
.pw-strength-label {
  font-size: 0.7rem;
  color: var(--muted);
}

/* Field-level match hint */
.field-hint {
  font-size: 0.72rem;
  margin-top: 0.25rem;
  min-height: 1rem;
  transition: color 0.15s;
}
.field-hint.ok {
  color: var(--success);
}
.field-hint.error {
  color: var(--danger);
}
