/**
 * NEOcargo Auth v8.0
 * Sliding Containers - Native App Feel
 */

/* ═══════════════════════════════════════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --bg-dark: #1a1a1a;
  --bg-card: #242424;
  --bg-input: #2a2a2a;
  --accent: #b2fe12;
  --accent-dark: #9ee00f;
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.45);
  --border: rgba(255, 255, 255, 0.1);
  --error: #ff4d4d;
  --warning: #ffc107;
  --success: #4ade80;
  --whatsapp: #25D366;
  --radius: 14px;
  --radius-sm: 10px;
  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  -webkit-user-select: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   iOS-STYLE PRESS EFFECT - Premium tactile response
   ═══════════════════════════════════════════════════════════════════════════ */

/* Smooth return transition */
button, a, .btn, .btn-primary, .btn-secondary, .btn-back {
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), 
              opacity 0.3s ease,
              filter 0.3s ease;
}

/* iOS-style press */
button:active,
a:active,
[role="button"]:active,
.btn:active,
.btn-primary:active,
.btn-secondary:active {
  transform: scale(0.98);
  opacity: 0.7;
  filter: brightness(0.95);
  transition: transform 0.1s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.1s ease;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: transparent;
}

/* ═══════════════════════════════════════════════════════════════════════════
   AUTH WRAPPER - Sliding Container
   ═══════════════════════════════════════════════════════════════════════════ */

#auth-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  height: 100dvh;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SLIDES
   ═══════════════════════════════════════════════════════════════════════════ */

.auth-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  padding-top: max(24px, env(safe-area-inset-top));
  padding-bottom: max(24px, env(safe-area-inset-bottom));
  
  /* Hidden by default - off screen right */
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  
  transition: transform var(--transition), opacity var(--transition);
  will-change: transform, opacity;
}

/* Active slide */
.auth-slide.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Exit to left (going forward) */
.auth-slide.exit-left {
  transform: translateX(-30%);
  opacity: 0;
}

/* Enter from right (going forward) */
.auth-slide.enter-right {
  transform: translateX(100%);
}

/* Exit to right (going back) */
.auth-slide.exit-right {
  transform: translateX(30%);
  opacity: 0;
}

/* Enter from left (going back) */
.auth-slide.enter-left {
  transform: translateX(-100%);
}

/* Slide content */
.slide-content {
  position: relative;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Slide header - fixed at top */
.slide-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  padding-top: max(16px, env(safe-area-inset-top));
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

.slide-header .btn-back {
  position: static;
  margin: 0;
}

.slide-header .logo-corner {
  position: static;
  width: 80px;
  height: auto;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LOGO SECTION
   ═══════════════════════════════════════════════════════════════════════════ */

.logo-section {
  text-align: center;
  padding: 40px 0 20px;
  margin-top: -80px;
}

/* Main logo for first slide - centered */
.logo-main-image {
  max-width: 160px;
  height: auto;
  display: block;
  margin: 0 auto 24px;
}

/* Welcome text on first slide */
.welcome-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 8px;
}

.welcome-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
}

/* Corner logo for other slides - in header */
.logo-corner {
  width: 80px;
  height: auto;
}

/* Spacer for header alignment when no back button */
.header-spacer {
  width: 44px;
  height: 44px;
}

.logo-box {
  width: 88px;
  height: 88px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 12px 40px rgba(178, 254, 18, 0.25);
}

.logo-box i {
  font-size: 40px;
  color: #1a1a1a;
}

.logo-title {
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 8px;
  letter-spacing: -0.5px;
}

.logo-tagline {
  font-size: 16px;
  color: var(--text-secondary);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER SECTION (for inner slides)
   ═══════════════════════════════════════════════════════════════════════════ */

.header-section {
  text-align: center;
  padding: 10px 0 20px;
}

.header-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-input) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.header-icon i {
  font-size: 26px;
  color: var(--accent);
}

.header-icon.success {
  background: linear-gradient(135deg, rgba(74, 222, 128, 0.15) 0%, rgba(74, 222, 128, 0.05) 100%);
  border-color: rgba(74, 222, 128, 0.3);
}
.header-icon.success i { color: var(--success); }

.header-icon.whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15) 0%, rgba(37, 211, 102, 0.05) 100%);
  border-color: rgba(37, 211, 102, 0.3);
}
.header-icon.whatsapp i { color: var(--whatsapp); }

.header-icon.gift {
  background: linear-gradient(135deg, rgba(178, 254, 18, 0.15) 0%, rgba(178, 254, 18, 0.05) 100%);
  border-color: rgba(178, 254, 18, 0.3);
}
.header-icon.gift i { color: var(--accent); }

.header-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 8px;
}

.header-subtitle {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.4;
}

.header-subtitle .highlight {
  color: var(--text-primary);
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════════════════════════
   FORM SECTION - Compact grouping
   ═══════════════════════════════════════════════════════════════════════════ */

.form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   INPUT WRAPPER
   ═══════════════════════════════════════════════════════════════════════════ */

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 16px;
  pointer-events: none;
  z-index: 1;
  transition: color 0.2s ease;
}

.auth-input {
  width: 100%;
  height: 56px;
  padding: 0 16px 0 48px;
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
}

.auth-input::placeholder {
  color: var(--text-muted);
}

/* Hide browser password reveal button */
.auth-input::-ms-reveal,
.auth-input::-ms-clear {
  display: none;
}

.auth-input::-webkit-credentials-auto-fill-button,
.auth-input::-webkit-password-reveal-button {
  display: none !important;
}

.auth-input:focus {
  border-color: var(--accent);
  background: rgba(178, 254, 18, 0.03);
}

/* Input error state */
.auth-input.input-error,
.auth-input.input-error:focus {
  border-color: var(--error) !important;
  background: rgba(255, 77, 77, 0.05);
  animation: inputShake 0.4s ease;
}

@keyframes inputShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

.auth-input:focus + .input-icon,
.input-wrapper:focus-within .input-icon {
  color: var(--accent);
}

.auth-input.uppercase {
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Input with toggle */
.input-wrapper:has(.input-toggle) .auth-input {
  padding-right: 48px;
}

.input-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: transform 0.1s ease, opacity 0.1s ease;
}

.input-toggle:active {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

/* ═══════════════════════════════════════════════════════════════════════════
   PHONE CHIP
   ═══════════════════════════════════════════════════════════════════════════ */

.phone-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text-primary);
}

.phone-chip i {
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════════════════
   CODE INPUTS (6 boxes)
   ═══════════════════════════════════════════════════════════════════════════ */

.code-inputs {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.code-box {
  width: 48px;
  height: 56px;
  background: var(--bg-input);
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  -webkit-appearance: none;
}

.code-box:focus {
  border-color: var(--accent);
  background: rgba(178, 254, 18, 0.05);
  transform: scale(1.05);
}

.code-box.filled {
  border-color: var(--accent);
}

.code-box.error {
  border-color: var(--error);
  animation: shake 0.4s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

.code-error {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--error);
  margin-top: -8px;
}

.code-error.show {
  display: flex;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PASSWORD STRENGTH
   ═══════════════════════════════════════════════════════════════════════════ */

.password-strength {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: -8px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, height 0.3s ease;
}

.password-strength.visible {
  opacity: 1;
  height: 20px;
}

.strength-bar {
  flex: 1;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  width: 0;
  border-radius: 2px;
  transition: width 0.3s ease, background-color 0.3s ease;
}

.strength-fill.weak {
  width: 33%;
  background: var(--error);
}

.strength-fill.medium {
  width: 66%;
  background: var(--warning);
}

.strength-fill.strong {
  width: 100%;
  background: var(--success);
}

.strength-label {
  font-size: 12px;
  font-weight: 500;
  min-width: 70px;
  text-align: right;
}

.strength-label.weak { color: var(--error); }
.strength-label.medium { color: var(--warning); }
.strength-label.strong { color: var(--success); }

/* ═══════════════════════════════════════════════════════════════════════════
   CHECKBOX
   ═══════════════════════════════════════════════════════════════════════════ */

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.checkbox-wrapper input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-mark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.checkbox-wrapper input:checked + .checkbox-mark {
  background: var(--accent);
  border-color: var(--accent);
}

.checkbox-mark::after {
  content: '✓';
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.2s ease;
}

.checkbox-wrapper input:checked + .checkbox-mark::after {
  opacity: 1;
  transform: scale(1);
}

.checkbox-text {
  font-size: 14px;
  color: var(--text-secondary);
}

.checkbox-text a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   INFO BOX
   ═══════════════════════════════════════════════════════════════════════════ */

.info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.info-box i {
  font-size: 22px;
  color: var(--whatsapp);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════════════════ */

.btn-primary {
  width: 100%;
  height: 56px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  border: none;
  border-radius: var(--radius);
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.1s ease, opacity 0.1s ease;
  box-shadow: 0 4px 20px rgba(178, 254, 18, 0.25);
}

.btn-primary:active:not(:disabled) {
  transform: scale(0.96);
  box-shadow: 0 2px 10px rgba(178, 254, 18, 0.2);
}

.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-primary.btn-whatsapp {
  background: linear-gradient(135deg, var(--whatsapp) 0%, #1ebe57 100%);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.25);
  color: #fff;
}

.btn-secondary {
  width: 100%;
  height: 48px;
  background: transparent;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.1s ease, opacity 0.1s ease;
}

.btn-link {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  padding: 8px 16px;
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  text-align: center;
}

.btn-link:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Forgot password button - centered */
.forgot-btn,
.btn-link[data-goto="forgot"] {
  margin-top: 8px;
}

/* Resend block - centered */
#btn-resend,
#btn-forgot-resend {
  margin-top: 8px;
  width: 100%;
  padding: 14px 20px;
  background: transparent;
  border: 1.5px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: none;  /* No hover transitions for mobile */
  -webkit-tap-highlight-color: transparent;
}

#btn-resend:disabled,
#btn-forgot-resend:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  border-color: var(--text-muted);
  color: var(--text-muted);
}

#btn-resend .resend-timer-text,
#btn-forgot-resend .resend-timer-text {
  color: inherit;
  font-size: 13px;
  margin-left: 4px;
}

.btn-back {
  position: absolute;
  top: max(20px, env(safe-area-inset-top));
  left: 16px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.1s ease, opacity 0.1s ease;
  z-index: 10;
  -webkit-tap-highlight-color: transparent;
}

.btn-back:active {
  transform: scale(0.96);
}

.btn-back i {
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BRANCH LIST
   ═══════════════════════════════════════════════════════════════════════════ */

.branch-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 4px;
}

.loading-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px 20px;
  color: var(--text-muted);
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.branch-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 0.1s ease, opacity 0.1s ease;
}

.branch-item.selected {
  border-color: var(--accent);
  background: rgba(178, 254, 18, 0.05);
}

.branch-item input {
  display: none;
}

.branch-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(178, 254, 18, 0.1) 0%, rgba(178, 254, 18, 0.03) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.branch-icon i {
  font-size: 18px;
  color: var(--accent);
}

.branch-info {
  flex: 1;
  min-width: 0;
}

.branch-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.branch-address {
  font-size: 13px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.branch-check {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.branch-item.selected .branch-check {
  background: var(--accent);
  border-color: var(--accent);
}

.branch-check i {
  font-size: 12px;
  color: #1a1a1a;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.branch-item.selected .branch-check i {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PROMO RESULT
   ═══════════════════════════════════════════════════════════════════════════ */

.promo-result {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
}

.promo-result.success {
  display: flex;
  background: rgba(74, 222, 128, 0.1);
  color: var(--success);
}

.promo-result.error {
  display: flex;
  background: rgba(255, 77, 77, 0.1);
  color: var(--error);
}

/* ═══════════════════════════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════════════════════════ */

#toast-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: max(12px, env(safe-area-inset-top)) 16px;
  pointer-events: none;
}

.toast {
  padding: 14px 18px;
  background: var(--bg-card);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast.error {
  border-left: 4px solid var(--error);
}
.toast.error i { color: var(--error); }

.toast.success {
  border-left: 4px solid var(--success);
}
.toast.success i { color: var(--success); }

.toast.info {
  border-left: 4px solid var(--accent);
}
.toast.info i { color: var(--accent); }

/* ═══════════════════════════════════════════════════════════════════════════
   LOADING STATE
   ═══════════════════════════════════════════════════════════════════════════ */

.btn-loading {
  position: relative;
  color: transparent !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.btn-primary.btn-loading::after {
  border-color: #1a1a1a;
  border-top-color: transparent;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLLBAR
   ═══════════════════════════════════════════════════════════════════════════ */

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 380px) {
  .auth-slide {
    padding: 20px;
  }
  
  .logo-box {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }
  
  .logo-box i {
    font-size: 32px;
  }
  
  .logo-title {
    font-size: 28px;
  }
  
  .code-box {
    width: 42px;
    height: 50px;
    font-size: 20px;
  }
  
  .code-inputs {
    gap: 8px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   KEYBOARD SUPPORT
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-height: 600px) {
  .logo-section {
    padding: 10px 0;
  }
  
  .logo-box {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }
  
  .logo-box i {
    font-size: 28px;
  }
  
  .logo-title {
    font-size: 24px;
    margin-bottom: 4px;
  }
  
  .logo-tagline {
    font-size: 14px;
  }
  
  .header-section {
    padding: 5px 0 15px;
  }
  
  .header-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
  }
  
  .header-icon i {
    font-size: 20px;
  }
  
  .header-title {
    font-size: 20px;
  }
  
  .slide-content {
    gap: 16px;
  }
  
  .form-section {
    gap: 12px;
  }
}
