.auth-section {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(232,196,104,0.18);
  border-radius: 22px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 0 50px rgba(232,196,104,0.05);
}

.auth-card::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e8c468, transparent);
}

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

.auth-header h2 {
  font-family: 'Manrope', 'Tajawal', sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, #f5f2ea 40%, #e8c468);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.auth-header p {
  font-size: 0.9rem;
  color: rgba(245,242,234,0.42);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.875rem;
  color: rgba(245,242,234,0.65);
  font-weight: 500;
}

.form-group input {
  font-family: 'Tajawal', sans-serif;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  color: #f5f2ea;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.form-group input:focus {
  border-color: rgba(232,196,104,0.45);
  background: rgba(255,255,255,0.07);
}

.form-group input::placeholder {
  color: rgba(245,242,234,0.2);
}

.btn-full {
  width: 100%;
  padding: 0.85rem;
  font-size: 1rem;
  border-radius: 10px;
  margin-top: 0.5rem;
  text-align: center;
}

.auth-switch {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.875rem;
  color: rgba(245,242,234,0.42);
}

.auth-switch a {
  color: #e8c468;
  text-decoration: none;
  font-weight: 700;
  margin-right: 0.35rem;
  margin-left: 0.35rem;
  transition: opacity 0.2s;
}

.auth-switch a:hover {
  opacity: 0.8;
  text-decoration: underline;
}
