/* ============================================
   GLOBAL ELITE TRAVEL — AUTH PAGES (Login/Signup)
   Premium Travel-Inspired Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ── Reset & Base ───────────────────────────── */
html, body {
  overflow: hidden !important;
  height: 100vh !important;
  width: 100vw !important;
  margin: 0;
  padding: 0;
}

.auth-page {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Push card to the right */
  padding: 110px 8% 40px; /* Symmetrical side margins for balance */
  font-family: 'Inter', 'Roboto', sans-serif;
  overflow: hidden;
  z-index: 1;
}

.auth-page--login .auth-image-panel__bg {
  background-image: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?auto=format&fit=crop&w=1920&q=80');
}

.auth-page--signup .auth-image-panel__bg {
  background-image: url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?auto=format&fit=crop&w=1920&q=80');
}

/* Aggressive scrolls disable */
html, body {
  overflow-x: hidden !important;
}

body:has(.auth-page) {
    overflow: hidden !important;
    height: 100vh !important;
}

/* Hide Footer on Auth Pages */
footer, .footer-area, .modern-footer, .expert-advice-button-section, .expert-floating-scroll-btn {
  display: none !important;
}

.auth-image-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
  align-items: center;
  padding: 0 5%;
}

.auth-image-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 500px;
  margin-top: 50px; /* Offset for header */
}

.auth-image-panel__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transition: transform 12s ease;
  background-size: cover;
  background-position: center;
}

.auth-page:hover .auth-image-panel__bg {
  transform: scale(1.04);
}

.auth-image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 20, 55, 0.85) 0%,
    rgba(5, 20, 55, 0.4) 40%,
    rgba(5, 20, 55, 0.15) 100%
  );
  z-index: 1;
}

.auth-image-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 520px;
}

.auth-image-content .auth-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 20px;
}

.auth-badge svg {
  width: 14px;
  height: 14px;
  fill: #FFD700;
}

.auth-image-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.25);
}

.auth-image-content p {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 32px;
  max-width: 420px;
}

/* Trust indicators */
.auth-trust-row {
  display: flex;
  gap: 32px;
  align-items: center;
}

.auth-trust-item {
  display: flex;
  flex-direction: column;
}

.auth-trust-item strong {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

.auth-trust-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.auth-trust-divider {
  width: 1px;
  height: 36px;
  background: rgb(255 255 255 / 65%);
}

/* ── Right Panel — Form Area ────────────────── */
.auth-form-panel {
  position: relative;
  z-index: 10;
  width: auto;
  min-width: 440px;
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-form-panel::-webkit-scrollbar {
  width: 5px;
}
.auth-form-panel::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 10px;
}



.auth-form-wrapper {
  width: 100%;
  max-width: 440px;
  background: rgb(255 255 255 / 65%); /* Translucent glass effect */
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 32px 40px; /* Comfortable padding for Login */
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-top: 20px;
}

/* Compact specific style for Signup only */
.auth-page--signup .auth-form-wrapper {
    padding: 15px 24px;
    max-width: 420px;
    margin-top: 5px;
    max-height: calc(100vh - 100px); /* Slightly more height allowed */
}

.auth-form-wrapper:hover {
  transform: translateY(-5px) scale(1.01);
  background: rgb(255 255 255 / 75%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Logo */
.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.auth-logo img {
  height: 42px; /* Comfortable size for Login */
  width: auto;
  object-fit: contain;
}

.auth-page--signup .auth-logo img {
    height: 22px; /* Ultra compact logo */
}

.auth-page--signup .auth-logo {
    margin-bottom: 8px;
}

/* Heading */
.auth-heading {
  text-align: center;
  margin-bottom: 12px;
}

.auth-heading h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; /* Comfortable size for Login */
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}

.auth-page--signup .auth-heading h2 {
    font-size: 17px; /* Ultra compact title */
}

.auth-page--signup .auth-heading {
    margin-bottom: 8px;
}

.auth-heading p {
  font-size: 14px; /* Comfortable size for Login */
  color: #64748b;
  margin: 4px 0 0;
  line-height: 1.4;
}

.auth-page--signup .auth-heading p {
    font-size: 11px; /* Minimal description */
    margin-top: 0;
}

/* ── Form Inputs ────────────────────────────── */
.auth-form {
  margin-top: 15px;
}

.auth-input-group {
  position: relative;
  margin-bottom: 10px;
}

.auth-grid-row {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-bottom: 4px; /* Minimal margin */
}

.auth-grid-row .auth-input-group {
  flex: 1;
  margin-bottom: 0; /* Let row handle spacing */
}

.auth-input-group label {
  display: block;
  font-size: 11px; /* Tiny labels */
  font-weight: 500;
  color: #475569;
  margin-bottom: 2px;
  margin-left: 2px;
  letter-spacing: 0.1px;
}

.auth-input-group .input-wrapper {
  position: relative;
}

.auth-input-group .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #94a3b8;
  pointer-events: none;
  transition: color 0.3s ease;
}

.auth-input-group input {
  width: 100%;
  height: 44px; /* Comfortable height for Login */
  padding: 0 16px 0 42px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  background: #f8fafc;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.auth-page--signup .auth-input-group input {
    height: 32px; /* Ultra compact height */
    padding: 0 12px 0 34px;
    font-size: 12px;
    border-radius: 8px;
}

.auth-page--signup .auth-input-group {
    margin-bottom: 4px;
}

.auth-page--signup .auth-input-group label {
    font-size: 10px;
    margin-bottom: 1px;
}

.auth-page--signup .auth-grid-row {
    gap: 8px;
    margin-bottom: 2px;
}

.auth-input-group input::placeholder {
  color: #a0aec0;
}

.auth-input-group input:hover {
  border-color: #cbd5e1;
  background: #ffffff;
}

.auth-input-group input:focus {
  border-color: #3b82f6;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.auth-input-group input:focus ~ .input-icon,
.auth-input-group input:focus + .input-icon {
  color: #3b82f6;
}

/* Password toggle */
.password-toggle {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.password-toggle:hover {
  color: #64748b;
}

.password-toggle svg {
  width: 18px;
  height: 18px;
}

/* ── Remember / Forgot Row ──────────────────── */
.auth-options-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  margin-top: 8px;
}

.auth-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.auth-remember input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1.5px solid #cbd5e1;
  border-radius: 4px;
  cursor: pointer;
  accent-color: #2563eb;
  transition: all 0.2s;
}

.auth-remember span {
  font-size: 13px;
  color: #64748b;
  user-select: none;
}

.auth-forgot-link {
  font-size: 13px;
  font-weight: 500;
  color: #2563eb;
  text-decoration: none;
  transition: color 0.2s;
}

.auth-forgot-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* ── reCAPTCHA Styling ───────────────────────── */
.auth-recaptcha-wrap {
  display: flex;
  justify-content: center;
  margin: 8px 0;
  width: 100%;
}

.auth-recaptcha-wrap .g-recaptcha {
  transform: scale(0.72);
  transform-origin: center;
  margin: 5px 0; /* Positive margin to prevent overlap */
}

.auth-page--signup .auth-recaptcha-wrap {
    margin: 8px 0;
}

/* ── Submit Button ──────────────────────────── */
.auth-submit-btn {
  width: 100%;
  height: 42px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #2563eb 100%);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Compact Signup Button Container */
.auth-page--signup .signup_button {
    margin-top: 2px;
}

.auth-page--signup .auth-submit-btn {
    height: 36px;
    font-size: 13px;
    border-radius: 6px;
}

.auth-submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #3b82f6 100%);
  opacity: 0;
  transition: opacity 0.35s;
}

.auth-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.auth-submit-btn:hover::before {
  opacity: 1;
}

.auth-submit-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.auth-submit-btn span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.auth-submit-btn span svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s;
}

.auth-submit-btn:hover span svg {
  transform: translateX(3px);
}

/* Loading state */
.auth-submit-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.auth-submit-btn.loading span {
  visibility: hidden;
}

.auth-submit-btn.loading::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 50%;
  margin: -11px 0 0 -11px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: authSpin 0.7s linear infinite;
  z-index: 2;
}

@keyframes authSpin {
  to { transform: rotate(360deg); }
}

/* ── Divider ────────────────────────────────── */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0;
}

.auth-switch {
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
    color: #64748b;
}

.auth-page--signup .auth-switch {
    margin-top: 5px;
    font-size: 12px;
}

.auth-switch a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.auth-divider span {
  font-size: 12px;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  white-space: nowrap;
}

/* ── Social Buttons ─────────────────────────── */
.auth-social-buttons {
  display: flex;
  gap: 12px;
}

.auth-social-btn {
  flex: 1;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  background: #ffffff;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.auth-social-btn:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  color: #1e293b;
  text-decoration: none;
}

.auth-social-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ── Switch Link ────────────────────────────── */
.auth-switch {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
  font-weight: 500;
  padding: 10px;
  border-radius: 12px;
  background: rgba(0,0,0,0.03);
}

.auth-switch a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.auth-switch a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

/* ── Terms text ─────────────────────────────── */
.auth-terms {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #64748b;
  line-height: 1.6;
}

.auth-terms a {
  color: #64748b;
  text-decoration: underline;
  transition: color 0.2s;
}

.auth-terms a:hover {
  color: #2563eb;
}

/* ── Country Code Select (Signup) ───────────── */
.auth-input-group .bootstrap-select {
  width: 100% !important;
}

.auth-input-group .bootstrap-select .btn {
  height: 44px; /* Default for Login */
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  font-size: 13px;
  padding-left: 14px;
  transition: all 0.3s;
}

.auth-page--signup .auth-input-group .bootstrap-select .btn {
    height: 32px; /* Compact height for Signup */
    font-size: 12px;
    padding-top: 0;
    padding-bottom: 0;
}

/* ── Dropdown Menu Styling ─────────────────── */
.auth-page--signup .bootstrap-select .dropdown-menu {
    max-height: 200px !important; /* Shorter dropdown */
    font-size: 12px;
}

.auth-page--signup .bootstrap-select .dropdown-menu .inner {
    max-height: 190px !important;
}

.auth-page--signup .bootstrap-select .dropdown-item {
    padding: 6px 15px;
}

.auth-input-group .bootstrap-select .btn:hover {
  border-color: #cbd5e1;
  background: #ffffff;
}

.auth-input-group .bootstrap-select .btn:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
  background: #ffffff;
}

/* ── Phone Row ──────────────────────────────── */
.auth-phone-row {
  display: flex;
  gap: 12px;
}

.auth-phone-row > div:first-child {
  flex: 0 0 48%;
}

.auth-phone-row > div:last-child {
  flex: 1;
}

/* ── reCAPTCHA ──────────────────────────────── */
.auth-recaptcha-wrap {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
}

.auth-recaptcha-wrap .g-recaptcha {
  transform: scale(0.95);
  transform-origin: center;
}

/* ── Animations ─────────────────────────────── */
@keyframes authFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-form-wrapper {
  animation: authFadeUp 0.6s ease-out;
}

.auth-image-content {
  animation: authFadeUp 0.8s 0.2s ease-out both;
}
/* ── Mobile Content Section ─────────────────── */
.auth-mobile-content {
  display: none; /* Hidden on desktop */
}

/* ── Responsive ─────────────────────────────── */

/* Tablet & Small Laptops */
@media (max-width: 991.98px) {
  html, body {
    overflow: auto !important;
    height: auto !important;
  }

  body:has(.auth-page) {
    overflow: auto !important;
    height: auto !important;
  }

  .auth-page {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 80px 20px 30px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  /* Background image covers entire page */
  .auth-image-panel {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    padding: 0;
  }

  /* Hide the text inside image panel on mobile (it's fixed/absolute) */
  .auth-image-content {
    display: none;
  }

  /* Show mobile content section above the card */
  .auth-mobile-content {
    display: block;
    position: relative;
    z-index: 10;
    max-width: 420px;
    width: 100%;
    text-align: center;
    margin: 0 auto 20px;
    padding: 0 10px;
    color: #ffffff;
  }

  .auth-mobile-content .auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
  }

  .auth-mobile-content .auth-badge svg {
    width: 14px;
    height: 14px;
    fill: #FFD700;
  }

  .auth-mobile-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 10px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
  }

  .auth-mobile-content p {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto 15px;
    max-width: 380px;
  }

  .auth-mobile-content .auth-trust-row {
    justify-content: center;
    gap: 20px;
  }

  /* Form card below the text */
  .auth-form-panel {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 420px;
    min-width: unset;
    height: auto;
    padding: 0;
    margin-top: 0;
  }

  .auth-form-wrapper {
    max-width: 100%;
    max-height: none;
    overflow-y: visible;
    background: rgb(255 255 255 / 90%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 28px 24px;
    border-radius: 20px;
    margin-top: 0;
  }

  .auth-page--signup .auth-form-wrapper {
    padding: 22px 20px;
    max-width: 100%;
    max-height: none;
    overflow-y: visible;
  }
}

/* Mobile Phones */
@media (max-width: 575.98px) {
  .auth-page {
    padding: 75px 15px 20px;
  }

  .auth-form-panel {
    max-width: 100%;
    min-width: unset;
  }

  .auth-form-wrapper {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .auth-page--signup .auth-form-wrapper {
    padding: 18px 16px;
  }

  .auth-logo img {
    height: 34px !important;
  }

  .auth-heading h2 {
    font-size: 22px !important;
  }

  .auth-heading p {
    font-size: 13px;
  }

  .auth-input-group input {
    height: 40px !important;
    font-size: 14px !important;
  }

  .auth-page--signup .auth-input-group input {
    height: 36px !important;
    font-size: 13px !important;
  }

  .auth-grid-row {
    flex-direction: column;
    gap: 0;
  }

  .auth-social-buttons {
    flex-direction: column;
  }

  .auth-social-btn {
    height: 42px;
  }

  .auth-submit-btn {
    height: 44px !important;
    font-size: 15px !important;
  }

  .auth-page--signup .auth-submit-btn {
    height: 40px !important;
    font-size: 14px !important;
  }

  .auth-recaptcha-wrap .g-recaptcha {
    transform: scale(0.85);
    transform-origin: center;
    margin: 5px 0;
  }

  .auth-switch {
    margin-top: 12px !important;
    font-size: 13px !important;
  }
}

/* Very Small Phones (320px - 375px) */
@media (max-width: 375px) {
  .auth-page {
    padding: 70px 10px 15px;
  }

  .auth-form-wrapper {
    padding: 18px 14px;
  }

  .auth-heading h2 {
    font-size: 20px !important;
  }

  .auth-logo img {
    height: 28px !important;
  }

  .auth-input-group input {
    height: 38px !important;
    font-size: 13px !important;
  }
}

/* ── Reset Password Modal Override ──────────── */
.auth-page ~ .modal .modal-content {
  border-radius: 16px;
  border: none;
  overflow: hidden;
}

.auth-page ~ .modal .modal-header {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border-bottom: none;
  padding: 20px 24px;
}

.auth-page ~ .modal .modal-title {
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.auth-page ~ .modal .modal-header .btn-close {
  filter: invert(1);
}

.auth-page ~ .modal .modal-body {
  padding: 24px;
}

.auth-page ~ .modal .modal-body .form-control {
  height: 48px;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  background: #f8fafc;
  transition: all 0.3s;
}

.auth-page ~ .modal .modal-body .form-control:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);
  background: #fff;
}

.auth-page ~ .modal .modal-footer {
  border-top: 1px solid #f1f5f9;
  padding: 16px 24px;
}

.auth-page ~ .modal .modal-footer .btn-primary {
  background: linear-gradient(135deg, #1e40af, #3b82f6);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  padding: 10px 24px;
}

.auth-page ~ .modal .modal-footer .btn-outline-primary {
  border-radius: 10px;
  font-weight: 500;
}

/* ── Hide default header padding on auth pages ── */
.auth-page-wrapper {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Signup-specific image */
.auth-image-panel--signup .auth-image-panel__bg {
  background-image:
    url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?auto=format&fit=crop&w=1920&q=80');
}
