.auth-container {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background: linear-gradient(135deg, var(--bg-main) 0%, rgba(30, 58, 138, 0.05) 100%);
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-md);
}

.auth-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.auth-header h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.password-wrapper {
  position: relative;
}

.toggle-password {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.auth-footer-text {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.auth-footer-text a {
  color: var(--secondary-color);
  font-weight: 700;
}
