/* REGISTER PAGE STYLES - VISION ENTERPRISES */

.password-strength-bar {
  display: flex;
  gap: 6px;
  margin-top: 0.8rem;
}

.strength-segment {
  flex: 1;
  height: 4px;
  background: var(--border-color);
  border-radius: 2px;
  transition: background 0.4s ease;
}

.strength-segment.weak { background: #EF4444; }
.strength-segment.medium { background: #F59E0B; }
.strength-segment.strong { background: #10B981; }

.strength-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.4rem;
  display: block;
}
