/* ============================================================
   REGISTER.CSS — BrightWay Enterprises Register Page
   ============================================================ */

/* Extends auth-page, auth-card from login.css */

.register-card {
  max-width: 540px;
}

.password-strength {
  height: 4px;
  background: var(--border-light);
  border-radius: 4px;
  margin-top: 8px;
  overflow: hidden;
}

.password-strength-bar {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  transition: width 0.3s ease, background 0.3s ease;
}

.password-strength-bar.weak { width: 25%; background: #EF4444; }
.password-strength-bar.fair { width: 50%; background: #F59E0B; }
.password-strength-bar.good { width: 75%; background: #3B82F6; }
.password-strength-bar.strong { width: 100%; background: var(--highlight); }

.password-strength-label {
  font-size: 0.78rem;
  margin-top: 4px;
  color: var(--text-muted);
}
