/* ==========================================================================
   AUTHENTICATION PAGES (LOGIN, REGISTER, FORGOT PASSWORD)
   AUTHENTICATION PAGES (QUIET LUXURY REDESIGN)
   ========================================================================== */

.auth-wrapper {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
}

.auth-visual-side {
  position: relative;
  background: 
    linear-gradient(135deg, rgba(7, 8, 10, 0.88) 0%, rgba(12, 14, 18, 0.94) 100%),
    url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  color: #ffffff;
  padding: var(--space-16);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.auth-visual-content {
  max-width: 520px;
}

.auth-visual-content h2 {
  color: #ffffff;
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-4);
  font-weight: 500;
}

.auth-visual-quote {
  font-size: 1.05rem;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-style: italic;
  color: #d1d7e5;
  line-height: 1.7;
  margin-top: var(--space-4);
}

.auth-form-side {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-12) var(--space-16);
  background-color: #ffffff;
  overflow-y: auto;
}

.auth-card-inner {
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
}

.auth-card-header {
  margin-bottom: var(--space-8);
}

.auth-card-header h2 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-2);
  font-weight: 500;
}

.demo-credentials-box {
  background: var(--bg-cream);
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-sm);
  padding: var(--space-4);
  background: var(--bg-stone);
  border: 1px dashed rgba(197, 168, 128, 0.4);
  border-radius: var(--radius-xs);
  padding: 1.1rem;
  margin-bottom: var(--space-6);
}

.demo-credentials-box small {
  display: block;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  letter-spacing: 0.08em;
  color: var(--obsidian);
  margin-bottom: var(--space-2);
  font-size: 0.72rem;
}

.demo-btns-row {
  display: flex;
  gap: var(--space-2);
}

.password-input-wrap {
  position: relative;
}

.password-toggle-btn {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.95rem;
}

.auth-footer-links {
  margin-top: var(--space-6);
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

.auth-footer-links a {
  color: var(--bronze-dark);
  font-weight: 600;
}

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

@media (max-width: 992px) {
  .auth-wrapper {
    grid-template-columns: 1fr;
  }

  .auth-visual-side {
    display: none;
  }

  .auth-form-side {
    padding: var(--space-8) var(--space-4);
  }
}