/**
 * Auth pages custom styles
 * Supplementary styles for login, signup, and verification pages
 */

/* Password strength indicator */
.password-strength {
  height: 4px;
  margin-top: 5px;
  border-radius: 2px;
  transition: all 0.3s;
}

.password-strength.strength-1 {
  background: linear-gradient(90deg, #dc3545 20%, #e9ecef 20%);
}

.password-strength.strength-2 {
  background: linear-gradient(90deg, #ffc107 40%, #e9ecef 40%);
}

.password-strength.strength-3 {
  background: linear-gradient(90deg, #17a2b8 60%, #e9ecef 60%);
}

.password-strength.strength-4 {
  background: linear-gradient(90deg, #28a745 80%, #e9ecef 80%);
}

.password-strength.strength-5 {
  background: linear-gradient(90deg, #28a745 100%, #e9ecef 100%);
}

.strength-label {
  font-size: 0.8rem;
  margin-top: 3px;
  display: block;
}

.strength-1-label {
  color: #dc3545;
}

.strength-2-label {
  color: #ffc107;
}

.strength-3-label {
  color: #17a2b8;
}

.strength-4-label {
  color: #28a745;
}

.strength-5-label {
  color: #28a745;
}

/* Email verification page */
.verification-container {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.spinner-large {
  width: 4rem;
  height: 4rem;
  border-width: 0.4rem;
}

.progress {
  height: 30px;
  font-size: 14px;
}

.status-icon {
  font-size: 64px;
  margin-bottom: 1rem;
}

.step-text {
  font-size: 1.1rem;
  color: #666;
  margin-top: 1rem;
  min-height: 30px;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
