.um-pw-strength-wrap {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  font-size: 0.95rem;
}

.um-pw-strength-label {
  font-weight: 600;
}

.um-pw-strength-label .um-pw-strength-text {
  font-weight: 700;
  margin-left: 6px;
}

.um-pw-strength-bars {
  display: inline-flex;
  gap: 6px;
}

.um-pw-strength-bars .bar {
  width: 16px;
  height: 10px;
  border-radius: 2px;
  background: #ddd;
  transition: background-color 150ms;
}

.um-pw-strength-bars .bar.filled {
  background: #4caf50;
}

.um-pw-strength-wrap.pw-0 .bar.filled {
  background: #f44336;
} /* red */
.um-pw-strength-wrap.pw-1 .bar.filled {
  background: #ff9800;
} /* orange */
.um-pw-strength-wrap.pw-2 .bar.filled {
  background: #ffc107;
} /* yellow */
.um-pw-strength-wrap.pw-3 .bar.filled {
  background: #8bc34a;
} /* light green */
.um-pw-strength-wrap.pw-4 .bar.filled {
  background: #4caf50;
} /* green */
