/* ============================================================
   CROWN GEM — LOGIN & REGISTER CSS
   Matches Luxury Crown Gems UI Design
   ============================================================ */

.auth-section {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: #FAF8F5;
}

.auth-container {
  background: #ffffff;
  border: 1px solid rgba(228, 220, 206, 0.8);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 480px;
  padding: 48px 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all var(--transition);
}

.auth-container:hover {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.08);
}

.auth-header {
  text-align: center;
  margin-bottom: 32px;
}

.auth-header h1 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.auth-header p {
  font-family: var(--sans);
  font-size: 13px;
  color: #666666;
}

.auth-alert {
  background: #FDF2F2;
  border-left: 3px solid #EC5B5B;
  color: #C0392B;
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 24px;
  border-radius: 4px;
}

.auth-success {
  background: #F0FDF4;
  border-left: 3px solid #2ECC71;
  color: #27AE60;
  padding: 12px 16px;
  font-size: 13px;
  margin-bottom: 24px;
  border-radius: 4px;
}

.auth-form .form-group {
  margin-bottom: 20px;
}

.auth-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #333333;
  margin-bottom: 8px;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"],
.auth-form input[type="tel"] {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(228, 220, 206, 0.9);
  border-radius: var(--radius-sm);
  background: #FAF8F5;
  font-family: var(--sans);
  font-size: 13.5px;
  color: #1A1A1A;
  outline: none;
  transition: all var(--transition);
}

.auth-form input:focus {
  background: #ffffff;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198, 154, 89, 0.15);
}

.auth-btn {
  width: 100%;
  background: var(--gold);
  color: #ffffff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  padding: 15px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 10px;
}

.auth-btn:hover {
  background: var(--gold-dark);
}

.auth-footer {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: #666666;
}

.auth-footer a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}
