/* ==========================================================
   TICKETYO AUTH PAGES - LIQUID GLASS DESIGN SYSTEM
   ========================================================== */

/* ---- Auth Page Base (transparent - inherits base bg) ---- */
.auth-page {
  position: relative;
  min-height: calc(100vh - 70px);
  overflow: hidden;
  background: transparent;
}

/* ---- Animated Background Particles ---- */
.auth-bg-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.auth-particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: radial-gradient(circle, #dc3545, transparent 70%);
}

.auth-particle.ap1 {
  width: 300px; height: 300px;
  top: -60px; right: -60px;
  animation: authFloat1 15s ease-in-out infinite;
}
.auth-particle.ap2 {
  width: 200px; height: 200px;
  bottom: 10%; left: 5%;
  animation: authFloat2 20s ease-in-out infinite;
}
.auth-particle.ap3 {
  width: 150px; height: 150px;
  top: 40%; right: 30%;
  animation: authFloat3 18s ease-in-out infinite;
}
.auth-particle.ap4 {
  width: 250px; height: 250px;
  bottom: -40px; right: 40%;
  animation: authFloat1 22s ease-in-out infinite reverse;
}

@keyframes authFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}
@keyframes authFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.15); }
}
@keyframes authFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-25px, 15px) scale(1.05); }
  75% { transform: translate(15px, -25px) scale(0.9); }
}


/* ---- Main Split Container ---- */
.auth-container {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100vh - 70px);
  padding: 24px;
  gap: 24px;
}


/* ============================================================
   LEFT PANEL - EVENT CAROUSEL IN FRAME
   ============================================================ */
.auth-carousel-panel {
  flex: 0 0 55%;
  display: flex;
  align-items: stretch;
}

.auth-carousel-frame {
  position: relative;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.auth-carousel-frame .carousel,
.auth-carousel-frame .carousel-inner,
.auth-carousel-frame .carousel-item {
  height: 100%;
}

/* Slide */
.auth-slide {
  position: relative;
  height: 100%;
  min-height: 500px;
  background: #1a1a2e;
}

.auth-slide-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.auth-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.3) 35%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

/* Caption */
.auth-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 32px;
  z-index: 2;
}

.auth-category-badge {
  display: inline-block;
  padding: 4px 14px;
  background: #dc3545;
  color: #fff;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.auth-event-title {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.auth-event-meta {
  display: flex;
  gap: 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.auth-event-meta i {
  margin-right: 6px;
  color: #dc3545;
}

.auth-event-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  margin-top: 8px;
}

/* CTA Button */
.auth-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  background: linear-gradient(135deg, #dc3545, #e04b59);
  color: #fff;
  border: none;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
  position: relative;
  overflow: hidden;
}

.auth-cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.auth-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.5);
  color: #fff;
}

.auth-cta-btn:hover::after {
  left: 100%;
}

/* Carousel Nav */
.auth-carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.auth-carousel-nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Carousel Indicators */
.auth-carousel-frame .carousel-indicators {
  margin-bottom: 16px;
}

.auth-carousel-frame .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  margin: 0 4px;
  transition: all 0.3s ease;
  opacity: 1;
}

.auth-carousel-frame .carousel-indicators button.active {
  background: #dc3545;
  width: 24px;
  border-radius: 4px;
}

/* Branding Badge */
.auth-carousel-branding {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
}

.auth-brand-text {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

/* Empty Slide */
.auth-slide-empty {
  background: linear-gradient(135deg, #2d1015 0%, #1a1a2e 50%, #16213e 100%);
  display: flex;
  align-items: flex-end;
}


/* ============================================================
   RIGHT PANEL - GLASS FORM CARD (Light Glass)
   ============================================================ */
.auth-form-panel {
  flex: 0 0 calc(45% - 24px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  overflow-y: auto;
}

.auth-glass-card {
  width: 100%;
  max-width: 440px;
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  animation: glassFloat 6s ease-in-out infinite;
}

@keyframes glassFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}


/* ---- Typography ---- */
.auth-glass-card .auth-title {
  color: #1a1a2e;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4px;
}

.auth-glass-card .auth-subtitle {
  color: #6c757d;
  font-size: 0.875rem;
  text-align: center;
  margin-bottom: 24px;
}


/* ---- Form Inputs ---- */
.auth-glass-card label {
  display: block;
  color: #4a5568;
  font-size: 0.78rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.auth-glass-card .auth-input {
  width: 100%;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  color: #2c3e50;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  outline: none;
  box-sizing: border-box;
}

.auth-glass-card .auth-input::placeholder {
  color: #adb5bd;
}

.auth-glass-card .auth-input:focus {
  border-color: #dc3545;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.auth-glass-card .auth-input.is-invalid {
  border-color: #dc3545;
}


/* ---- Input Groups ---- */
.auth-glass-card .auth-input-group {
  margin-bottom: 16px;
}

.auth-glass-card .auth-pw-group {
  position: relative;
}

.auth-glass-card .auth-pw-toggle {
  position: absolute;
  right: 14px;
  top: 38px;
  color: #adb5bd;
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  z-index: 2;
  line-height: 1;
}

.auth-glass-card .auth-pw-toggle:hover {
  color: #6c757d;
}


/* ---- Buttons ---- */
.auth-glass-card .auth-submit-btn {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #dc3545, #e04b59);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.25);
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.auth-glass-card .auth-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.35);
}

.auth-glass-card .auth-submit-btn:active {
  transform: translateY(0);
}

.auth-glass-card .auth-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}

/* Outline button (Google OAuth) */
.auth-glass-card .auth-outline-btn {
  width: 100%;
  padding: 12px;
  background: rgba(255, 255, 255, 0.5);
  color: #2c3e50;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.auth-glass-card .auth-outline-btn:hover {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(0, 0, 0, 0.15);
  color: #1a1a2e;
}

.auth-glass-card .auth-outline-btn img {
  width: 20px;
  height: 20px;
}


/* ---- Divider ---- */
.auth-divider {
  display: flex;
  align-items: center;
  margin: 20px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
}

.auth-divider span {
  padding: 0 16px;
  color: #adb5bd;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ---- Links ---- */
.auth-glass-card .auth-link {
  color: #dc3545;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.auth-glass-card .auth-link:hover {
  color: #c82333;
}

.auth-glass-card .auth-footer-text {
  text-align: center;
  color: #6c757d;
  font-size: 0.85rem;
  margin-top: 20px;
}


/* ---- Checkbox ---- */
.auth-glass-card .auth-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
}

.auth-glass-card .auth-checkbox {
  width: 18px;
  height: 18px;
  accent-color: #dc3545;
  margin-top: 2px;
  flex-shrink: 0;
}

.auth-glass-card .auth-checkbox-label {
  color: #4a5568;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0;
  line-height: 1.4;
}


/* ---- Remember / Forgot Row ---- */
.auth-row-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 0 4px;
}


/* ---- Messages ---- */
.auth-glass-card .auth-error {
  background: rgba(220, 53, 69, 0.08);
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.auth-glass-card .auth-error p {
  color: #c82333;
  font-size: 0.85rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-glass-card .auth-success {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

.auth-glass-card .auth-success p {
  color: #059669;
  font-size: 0.85rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.auth-glass-card .auth-field-error {
  color: #dc3545;
  font-size: 0.78rem;
  margin-top: 4px;
}


/* ---- Icon Circle (for centered pages) ---- */
.auth-icon-circle {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: rgba(220, 53, 69, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(220, 53, 69, 0.15);
}

.auth-icon-circle i {
  font-size: 1.5rem;
  color: #dc3545;
}


/* ---- Name Row (2 columns) ---- */
.auth-name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}


/* ============================================================
   FORM WIZARD STEPS
   ============================================================ */
.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.wizard-step-indicator {
  display: flex;
  align-items: center;
}

.wizard-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.04);
  color: #adb5bd;
  border: 2px solid rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  position: relative;
}

.wizard-step-dot.active {
  background: linear-gradient(135deg, #dc3545, #e04b59);
  color: #fff;
  border-color: #dc3545;
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.25);
}

.wizard-step-dot.completed {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.3);
}

.wizard-step-line {
  width: 50px;
  height: 2px;
  background: rgba(0, 0, 0, 0.06);
  transition: background 0.4s ease;
}

.wizard-step-line.active {
  background: linear-gradient(90deg, #dc3545, #e04b59);
}

.wizard-step-label {
  position: absolute;
  top: 42px;
  white-space: nowrap;
  font-size: 0.6rem;
  color: #adb5bd;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wizard-step-dot.active .wizard-step-label,
.wizard-step-dot.completed .wizard-step-label {
  color: #6c757d;
}

/* Wizard Panels */
.wizard-panel {
  display: none;
  animation: wizardFadeIn 0.4s ease;
}

.wizard-panel.active {
  display: block;
}

@keyframes wizardFadeIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Wizard Navigation */
.wizard-nav {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.wizard-prev-btn {
  flex: 0 0 auto;
  padding: 12px 20px;
  background: rgba(0, 0, 0, 0.04);
  color: #6c757d;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.wizard-prev-btn:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #2c3e50;
}

.wizard-next-btn {
  flex: 1;
  padding: 12px;
  background: linear-gradient(135deg, #dc3545, #e04b59);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.wizard-next-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.35);
}

.wizard-next-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none;
}


/* ============================================================
   PASSWORD STRENGTH & MATCH
   ============================================================ */
.auth-pw-strength {
  margin-top: 8px;
}

.auth-pw-strength-bar {
  height: 3px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.auth-pw-strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.auth-pw-strength-text {
  font-size: 0.7rem;
  color: #adb5bd;
  margin-top: 4px;
}

.auth-pw-match {
  font-size: 0.8rem;
  color: #059669;
  margin-top: 4px;
  display: none;
  align-items: center;
  gap: 6px;
}

.auth-pw-match.show {
  display: flex;
}


/* ============================================================
   VERIFICATION CODE INPUT
   ============================================================ */
.auth-code-input {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  color: #1a1a2e;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 12px;
  transition: all 0.3s ease;
  outline: none;
  font-family: 'Poppins', monospace;
  box-sizing: border-box;
}

.auth-code-input:focus {
  border-color: #dc3545;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.auth-code-input::placeholder {
  color: #ced4da;
  letter-spacing: 8px;
  font-size: 1rem;
}


/* ============================================================
   PROFILE PAGE SPECIFICS
   ============================================================ */
.auth-glass-card.auth-profile-card {
  max-width: 560px;
}

.auth-profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.auth-profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(220, 53, 69, 0.3);
}

.auth-profile-avatar-placeholder {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #dc3545, #e04b59);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  flex-shrink: 0;
}

.auth-profile-info h3 {
  color: #1a1a2e;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 2px;
}

.auth-profile-info p {
  color: #6c757d;
  font-size: 0.85rem;
  margin: 0;
}

/* File input */
.auth-file-input {
  width: 100%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  color: #4a5568;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.auth-file-input::-webkit-file-upload-button {
  padding: 6px 16px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  color: #4a5568;
  font-size: 0.8rem;
  cursor: pointer;
  margin-right: 12px;
  transition: all 0.3s ease;
}

.auth-file-input::-webkit-file-upload-button:hover {
  background: rgba(0, 0, 0, 0.08);
}

/* Danger outline button */
.auth-danger-outline-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.2);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  display: block;
  margin-top: 12px;
}

.auth-danger-outline-btn:hover {
  background: rgba(220, 53, 69, 0.05);
  border-color: rgba(220, 53, 69, 0.35);
  color: #c82333;
}


/* ============================================================
   RESEND CODE SECTION
   ============================================================ */
.auth-resend-section {
  text-align: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.auth-resend-section p {
  color: #adb5bd;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.auth-resend-btn {
  background: none;
  border: none;
  color: #dc3545;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}

.auth-resend-btn:hover {
  color: #c82333;
}


/* ============================================================
   BUTTON LOADING SPINNER
   ============================================================ */
.btn-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpin 0.6s linear infinite;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

/* Loading state */
.auth-submit-btn.loading,
.wizard-next-btn.loading,
.auth-outline-btn.loading {
  pointer-events: none;
  opacity: 0.8;
}

.auth-outline-btn.loading .btn-spinner {
  border-color: rgba(44, 62, 80, 0.2);
  border-top-color: #2c3e50;
}


/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

/* Large tablet */
@media (max-width: 1024px) {
  .auth-container {
    padding: 16px;
    gap: 16px;
  }

  .auth-carousel-panel {
    flex: 0 0 48%;
  }

  .auth-form-panel {
    flex: 0 0 calc(52% - 16px);
  }

  .auth-glass-card {
    padding: 28px 24px;
    max-width: 420px;
  }

  .auth-event-title {
    font-size: 1.4rem;
  }

  .auth-slide-caption {
    padding: 28px 24px;
  }
}


/* Tablet / small laptop */
@media (max-width: 768px) {
  .auth-container {
    flex-direction: column;
    padding: 0;
    gap: 0;
    min-height: auto;
  }

  .auth-page {
    min-height: auto;
  }

  .auth-carousel-panel {
    display: none;
  }

  .auth-form-panel {
    flex: 1;
    padding: 24px 16px;
  }

  .auth-glass-card {
    max-width: 100%;
    border-radius: 20px;
    padding: 28px 20px;
    animation: none;
  }

  .auth-glass-card .auth-title {
    font-size: 1.4rem;
  }

  .wizard-step-line {
    width: 30px;
  }

  .wizard-step-dot {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}


/* Mobile */
@media (max-width: 480px) {
  .auth-glass-card {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .auth-glass-card .auth-title {
    font-size: 1.25rem;
  }

  .auth-name-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wizard-step-label {
    display: none;
  }

  .wizard-step-line {
    width: 20px;
  }

  .wizard-step-dot {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }

  .auth-code-input {
    font-size: 1.4rem;
    letter-spacing: 8px;
    padding: 14px;
  }
}
