/* === Password Strength Meter === */

.strength {
  width: 100%;
  height: 6px;
  margin-top: 0.4rem;
  background: var(--border);
  border-radius: 999px;
  overflow: hidden;
}

.strength-bar {
  height: 100%;
  width: 0%;
  background: var(--muted);
  transition: width 0.25s ease, background-color 0.25s ease;
}
