/* ── Reset ── */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #f8f6f1;
}

/* ── Auth wrapper ── */
#auth {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background:
    radial-gradient(ellipse at top right, rgba(180,140,60,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(120,80,200,0.08) 0%, transparent 55%),
    #f8f6f1;
}

/* ── Card ── */
.card {
  background: rgba(255,255,255,0.75) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180,140,60,0.2) !important;
  border-radius: 24px !important;
  width: 100%;
  max-width: 480px;
  box-shadow: 
    0 10px 30px rgba(0,0,0,0.08),
    0 1px 0 rgba(255,255,255,0.6) inset !important;
  position: relative;
}

/* Gold shimmer */
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c9a24c, #f1d27a, #c9a24c, transparent);
}

/* Hover */
.card:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 20px 50px rgba(0,0,0,0.12),
    0 1px 0 rgba(255,255,255,0.8) inset !important;
}

/* ── Card Body ── */
.card-body {
  padding: 3rem 3rem 2.5rem;
}

/* ── Logo ── */
.text-center img {
  height: 56px;
  margin-bottom: 1rem;
  filter: drop-shadow(0 2px 6px rgba(180,140,60,0.25));
}

/* ── Heading ── */
h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 22px;
  color: #b48c3c;
  text-transform: uppercase;
  letter-spacing: 4px;
  text-align: center;
}

/* ── Labels ── */
label {
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(120,100,60,0.7);
  margin-bottom: 8px;
}

/* ── Inputs ── */
.form-control {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(180,140,60,0.2);
  border-radius: 12px;
  padding: 14px 16px 14px 44px;
  font-size: 14px;
  color: #2d2a26;
  transition: all 0.25s ease;
}

.form-control::placeholder {
  color: rgba(0,0,0,0.3);
}

.form-control:focus {
  border-color: rgba(180,140,60,0.5);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(180,140,60,0.15);
  outline: none;
}

/* ── Icon ── */
.form-control-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(180,140,60,0.6);
}

/* ── Button ── */
.btn-primary {
  background: linear-gradient(135deg, #c9a24c, #f1d27a, #c9a24c) !important;
  background-size: 200% auto !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 15px 0 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2d2a26 !important;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-position: right center !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(180,140,60,0.25);
}

/* ── Links ── */
.text-dark {
  font-size: 12px;
  color: rgba(0,0,0,0.5) !important;
}

.text-dark:hover {
  color: #b48c3c !important;
}

a.text-success,
a[href*="register"] {
  color: #b48c3c !important;
  font-weight: 600;
}

a.text-success:hover {
  color: #8a6a2f !important;
}