.cbd-pw-wrap { position: relative; }
.cbd-pw-wrap .form-control { padding-right: 2.75rem; }
.cbd-pw-toggle {
  position: absolute;
  right: .5rem;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: var(--cbd-text-dim, #64748b);
  padding: .25rem .5rem;
  line-height: 1;
  border-radius: .375rem;
}
.cbd-pw-toggle:hover {
  color: var(--cbd-cyan, #38bdf8);
  background: rgba(56, 189, 248, 0.1);
}
.cbd-pw-requirements {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--cbd-border, rgba(255, 255, 255, 0.09));
  border-radius: var(--cbd-radius-sm, 12px);
  padding: .875rem 1rem;
  font-size: .875rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.cbd-pw-requirements-title {
  margin: 0 0 .5rem;
  font-weight: 600;
  color: var(--cbd-text-muted, #94a3b8);
  font-size: .82rem;
  letter-spacing: 0.02em;
}
.cbd-pw-checklist { margin: 0; padding: 0; list-style: none; }
.cbd-pw-checklist li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: .3rem;
  color: var(--cbd-text-dim, #64748b);
  line-height: 1.45;
  transition: color .15s ease;
}
.cbd-pw-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .38rem;
  width: .7rem;
  height: .7rem;
  border: 1.5px solid var(--cbd-border-bright, rgba(255, 255, 255, 0.16));
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
}
.cbd-pw-checklist li.met { color: #4ade80; font-weight: 500; }
.cbd-pw-checklist li.met::before {
  content: '✓';
  border-color: #22c55e;
  background: #22c55e;
  color: #030712;
  font-size: .5rem;
  line-height: .68rem;
  text-align: center;
  font-weight: 700;
}
.cbd-pw-checklist li.unmet { color: #fbbf24; }
.cbd-pw-checklist li.unmet::before {
  border-color: #f59e0b;
  background: rgba(245, 158, 11, 0.12);
}
.cbd-pw-meter { margin-top: .75rem; }
.cbd-pw-meter-track {
  height: .35rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.cbd-pw-meter-bar {
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--cbd-text-dim, #64748b);
  transition: width .2s ease, background .2s ease;
}
.cbd-pw-meter-label { margin: .35rem 0 0; font-size: .8125rem; color: var(--cbd-text-dim, #64748b); }
.cbd-pw-meter-bar.weak { background: #f87171; }
.cbd-pw-meter-bar.fair { background: #fbbf24; }
.cbd-pw-meter-bar.good { background: var(--cbd-cyan, #38bdf8); }
.cbd-pw-meter-bar.strong { background: #4ade80; }
.cbd-pw-match { font-size: .8125rem; margin-top: .35rem; min-height: 1.25rem; }
.cbd-pw-match.ok { color: #4ade80; font-weight: 500; }
.cbd-pw-match.bad { color: #fbbf24; }
.cbd-pw-field.is-invalid .form-control { border-color: #f87171 !important; }
.cbd-pw-field.is-valid .form-control { border-color: #4ade80 !important; }