/* ==========================================================================
   Authentication Styles - Candidate & Employer Login/Register
   ========================================================================== */

.auth-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.5rem 1rem;
}

.auth-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 460px;
  padding: 2.5rem;
  transition: box-shadow 0.2s ease;
}

.auth-card:hover {
  box-shadow: var(--shadow-lg);
}

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

.auth-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  background-color: var(--primary-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  border: 1px solid #bfdbfe;
}

.auth-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark-bg);
  letter-spacing: -0.5px;
  margin-bottom: 0.35rem;
}

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

.auth-footer {
  text-align: center;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.auth-footer a {
  font-weight: 600;
}
