.auth-brand h2 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 4px;
}

.invalid-feedback {
  margin-top: 4px;
  font-weight: 500;
}

/* ===== Forgot Password Specific Styles ===== */
.forgot-step {
  display: none;
}

.forgot-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.forgot-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #ecfdf5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
  color: #10b981;
}

.forgot-subtitle {
  text-align: center;
  margin-bottom: 28px;
}

.forgot-subtitle p {
  font-size: 13px;
  color: #64748b;
  margin: 8px 0 0;
  line-height: 1.5;
}

.forgot-links {
  text-align: center;
  margin-top: 24px;
}

.forgot-links a {
  display: inline-block;
  font-size: 13px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.forgot-links a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.forgot-back-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
  transition: color 0.2s;
}

.forgot-back-link:hover {
  color: #2563eb;
}

.password-requirements {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #475569;
}

.password-requirements ul {
  margin: 8px 0 0;
  padding-left: 16px;
  list-style: none;
}

.password-requirements li {
  display: flex;
  gap: 8px;
  margin: 6px 0;
}

.password-requirements li::before {
  content: '\f26f';
  font-family: 'Bootstrap Icons';
  color: #94a3b8;
  font-size: 12px;
}

.password-requirements li.met::before {
  content: '\f26e';
  color: #10b981;
}
