/* ═══════════════════════════════════════════
   LED Billboard — User Panel style.css
   THEME: Light / White-Yellowish
═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Exo+2:wght@300;400;500;600;700&family=Share+Tech+Mono&display=swap');

/* ── Variables ── */
:root {
  --bg-primary:    #F7F6F0;
  --bg-card:       #FFFFFF;
  --bg-secondary:  #F0EDE4;
  --border:        #E8E0C8;
  --border2:       #D4C890;
  --accent-blue:   #B8860B;
  --accent-cyan:   #9A6F00;
  --accent-green:  #1a8a4a;
  --accent-red:    #cc2244;
  --accent-yellow: #C8900A;
  --accent-purple: #9A6F00;
  --text-primary:  #1A1710;
  --text-muted:    #6B6040;
  --text-sub:      #A09070;
  --font-display:  'Rajdhani', sans-serif;
  --font-body:     'Exo 2', sans-serif;
  --font-mono:     'Share Tech Mono', monospace;
  --radius:        10px;
  --radius-sm:     6px;
  --radius-lg:     16px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; height: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--border2); border-radius: 4px; }

/* ── Typography helpers ── */
.font-raj { font-family: var(--font-display); }
.mono     { font-family: var(--font-mono); }

/* ════════════════════════
   SIDE NAVBAR
════════════════════════ */
.side-navbar {
  position: fixed;
  top: 0; left: 0;
  width: 220px;
  height: 100vh;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  z-index: 999;
  overflow-y: auto;
  transition: transform .3s;
  box-shadow: 2px 0 12px rgba(180,140,0,0.07);
}
.side-nav-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.navbar-brand-logo {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.navbar-brand-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 1px;
  white-space: nowrap;
}
.side-nav-links {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.nav-link-item {
  color: var(--text-muted);
  font-size: .84rem;
  font-weight: 500;
  padding: 9px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
  display: flex;
  gap: 10px;
}
.nav-link-item i { font-size: 1rem; flex-shrink: 0; }
.nav-link-item:hover { color: #fff; background: rgba(30,25,10,0.82); }
.nav-link-item.active { color: #FFD700; background: #1A1710; border-left: 3px solid #C8900A; padding-left: 11px; box-shadow: 0 2px 12px rgba(0,0,0,0.18); }
.side-nav-bottom {
  padding: 14px 16px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.side-nav-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  margin-bottom: 12px;
}
.side-nav-search input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: .8rem;
  width: 100%;
}
.side-nav-user {
  display: flex; align-items: center; gap: 10px;
  cursor: pointer;
  padding: 6px 4px;
  border-radius: var(--radius-sm);
  transition: background .15s;
}
.side-nav-user:hover { background: rgba(180,140,0,0.10); }
.nav-user-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; cursor: pointer;
  flex-shrink: 0;
  border: 2px solid var(--border2);
  transition: border-color .2s;
}
.nav-user-avatar:hover { border-color: var(--accent-blue); }
.side-nav-notif {
  position: relative; display: inline-flex;
}

/* Main content shifts right */
.main-content {
  margin-left: 220px;
  min-height: 100vh;
}

/* Top bar on mobile */
.mobile-topbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 998;
}
.hamburger-btn {
  background: none; border: none;
  color: var(--text-primary); font-size: 1.3rem;
  cursor: pointer; padding: 4px;
}

/* ════════════════════════
   CARDS
════════════════════════ */
.card-dark {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(180,140,0,0.06);
}
.card-dark:hover { border-color: var(--border2); box-shadow: 0 4px 20px rgba(180,140,0,0.12); }

/* ════════════════════════
   FORM ELEMENTS
════════════════════════ */
.form-control, .form-select {
  background: var(--bg-card) !important;
  border: 1px solid var(--border2) !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body);
  font-size: .84rem;
  border-radius: var(--radius-sm) !important;
}
.form-control:focus, .form-select:focus {
  border-color: var(--accent-blue) !important;
  box-shadow: 0 0 0 3px rgba(180,140,0,0.14) !important;
  outline: none;
}
.form-control::placeholder { color: var(--text-sub); }
.form-label {
  font-size: .72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 5px;
  font-weight: 600;
}
.form-select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6040' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  background-size: 12px 8px !important;
  padding-right: 36px !important;
  cursor: pointer !important;
}
.form-select option { background: var(--bg-card); color: var(--text-primary); }
.form-select:disabled { opacity: .42 !important; cursor: not-allowed !important; }

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: none; cursor: pointer; opacity: 0.6;
}

/* ════════════════════════
   BADGES
════════════════════════ */
.badge-active   { background: rgba(26,138,74,.12)  !important; color: var(--accent-green)  !important; }
.badge-inactive { background: rgba(204,34,68,.10)  !important; color: var(--accent-red)    !important; }
.badge-pending  { background: rgba(200,144,10,.12) !important; color: var(--accent-yellow) !important; }
.badge-done     { background: rgba(184,134,11,.14) !important; color: var(--accent-cyan)   !important; }
.badge-booked   { background: rgba(184,134,11,.12) !important; color: var(--accent-cyan)   !important; }
.badge-expired  { background: rgba(154,111,0,.12)  !important; color: var(--accent-purple) !important; }
.badge-paid     { background: rgba(26,138,74,.12)  !important; color: var(--accent-green)  !important; }
.badge-unpaid   { background: rgba(204,34,68,.10)  !important; color: var(--accent-red)    !important; }
.badge-completed { background: rgba(26,138,74,.12)  !important; color: var(--accent-green)  !important; }
.badge-cancelled { background: rgba(204,34,68,.10)  !important; color: var(--accent-red)    !important; }

/* ════════════════════════
   BUTTONS
════════════════════════ */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--accent-blue), #8B6000);
  border: none;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .5px;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 15px rgba(180,140,0,0.25);
}
.btn-primary-custom:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(180,140,0,0.38); }

.btn-outline-custom {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--text-muted);
  font-size: .82rem;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .2s;
}
.btn-outline-custom:hover { border-color: var(--accent-blue); color: var(--text-primary); }

.btn-primary {
  background: linear-gradient(135deg, #FFD700, #cc8800) !important;
  border-color: #FFD700 !important;
  color: #000 !important;
  font-weight: 700 !important;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(135deg, #ffe033, #e69900) !important;
  border-color: #ffe033 !important;
  color: #000 !important;
  box-shadow: 0 4px 15px rgba(255,215,0,.35) !important;
}

/* ════════════════════════
   TABLES
════════════════════════ */
.table {
  --bs-table-bg: transparent !important;
  --bs-table-color: var(--text-primary) !important;
  --bs-table-striped-bg: transparent !important;
  --bs-table-hover-bg: rgba(180,140,0,0.05) !important;
  --bs-table-border-color: var(--border) !important;
  color: var(--text-primary) !important;
}
.table > :not(caption) > * > * {
  background-color: transparent !important;
  color: var(--text-primary) !important;
  border-color: var(--border) !important;
}
.table thead > tr > * {
  background: var(--bg-secondary) !important;
  color: var(--text-muted) !important;
  border-color: var(--border) !important;
}
.table tbody tr:hover > * {
  background-color: rgba(180,140,0,0.05) !important;
}

.tbl thead th {
  background: var(--bg-secondary);
  color: var(--text-muted);
  font-size: .67rem;
  text-transform: uppercase;
  letter-spacing: .07em;
  border-color: var(--border);
  font-weight: 600;
  white-space: nowrap;
  padding: 10px 14px;
}
.tbl td {
  font-size: .82rem;
  color: var(--text-primary);
  border-color: var(--border);
  vertical-align: middle;
  padding: 11px 14px;
}
.tbl tbody tr:hover td { background: rgba(180,140,0,0.04); }

/* ════════════════════════
   STAT ICON BOX
════════════════════════ */
.stat-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; flex-shrink: 0;
}

/* ════════════════════════
   HERO / PAGE HEADER
════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, #F5F0DC 0%, #FAF6E8 50%, #F7F6F0 100%);
  border-bottom: 1px solid var(--border);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(200,144,10,0.10) 0%, transparent 70%);
  pointer-events: none;
}

/* ════════════════════════
   PROGRESS BAR
════════════════════════ */
.prog-bar { height: 6px; background: var(--border); border-radius: 4px; overflow: hidden; }
.prog-fill { height: 100%; border-radius: 4px; transition: width .8s ease; }

/* ════════════════════════
   PAGINATION
════════════════════════ */
.page-link {
  background: var(--bg-card) !important;
  border-color: var(--border) !important;
  color: var(--text-primary) !important;
  font-size: .78rem;
}
.page-item.active .page-link {
  background: var(--accent-blue) !important;
  border-color: var(--accent-blue) !important;
  color: #fff !important;
}

/* ════════════════════════
   FILTER BAR
════════════════════════ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.filter-bar .form-select,
.filter-bar .form-control { font-size: .76rem; padding: 5px 10px; height: 34px; min-width: 130px; max-width: 180px; }
.filter-bar .form-control { max-width: 160px; }

/* ════════════════════════
   MOBILE BOTTOM NAV
════════════════════════ */
.mobile-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  z-index: 999;
  padding: 8px 0 10px;
}
.mob-nav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 3px; cursor: pointer; text-decoration: none;
  color: var(--text-muted); font-size: .58rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
  transition: color .15s;
}
.mob-nav-item.active, .mob-nav-item:hover { color: var(--accent-cyan); }
.mob-nav-item i { font-size: 1.15rem; }

@media (max-width: 767px) {
  .side-navbar { transform: translateX(-100%); }
  .side-navbar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .mobile-topbar { display: flex; }
  .mobile-bottom-nav { display: flex; }
  body { padding-bottom: 60px; }
  .side-nav-overlay { display: block; }
}
.side-nav-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.3);
  z-index: 998;
}

/* ════════════════════════
   MAP
════════════════════════ */
.leaflet-container { background: #aad3df !important; font-family: var(--font-body); }
.leaflet-tile-pane { filter: brightness(1) saturate(.85); }
.leaflet-popup-content-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border2);
  color: var(--text-primary);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.leaflet-popup-tip { background: var(--bg-card); }
.leaflet-popup-content { font-size: .76rem; margin: 8px 12px; }
.leaflet-popup-content b { color: var(--accent-cyan); }
.leaflet-control-zoom a { background: var(--bg-card) !important; color: var(--text-primary) !important; border-color: var(--border2) !important; }
.leaflet-control-attribution { background: rgba(240,237,228,.9) !important; color: var(--text-muted) !important; font-size: .55rem !important; }

/* ════════════════════════
   ANIMATIONS
════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp .4s ease both; }
.delay-1   { animation-delay: .08s; }
.delay-2   { animation-delay: .16s; }
.delay-3   { animation-delay: .24s; }
.delay-4   { animation-delay: .32s; }

/* ════════════════════════
   MODAL
════════════════════════ */
.modal-content {
  background: var(--bg-card) !important;
  border: 1px solid var(--border2) !important;
  color: var(--text-primary) !important;
}
.modal-header, .modal-footer { border-color: var(--border) !important; }

/* ════════════════════════
   TOAST
════════════════════════ */
.toast-custom {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  background: var(--bg-card);
  border: 1px solid var(--border2);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: .82rem;
  box-shadow: 0 8px 30px rgba(180,140,0,0.15);
  display: flex; align-items: center; gap: 10px;
  animation: fadeUp .3s ease;
  max-width: 320px;
  color: var(--text-primary);
}

/* ════════════════════════
   REGISTRATION FORM STYLES
════════════════════════ */

/* Utility Classes */
.hidden { display: none !important; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.center { text-align: center; }

/* Background Mesh */
.bg-mesh {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mesh-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(0, 123, 255, 0.1));
}

.mesh-circle.c1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.mesh-circle.c2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
}

.mesh-circle.c3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Top Bar */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Main Container */
.main-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 2rem 1rem;
}

/* Step Track */
.step-track {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.875rem;
  font-weight: 500;
}

.step-item.active {
  color: #007bff;
}

.step-item.done {
  color: #28a745;
}

.step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e9ecef;
  color: #6c757d;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.step-item.active .step-dot {
  background: #007bff;
  color: white;
}

.step-item.done .step-dot {
  background: #28a745;
  color: white;
}

.step-line {
  width: 60px;
  height: 2px;
  background: #e9ecef;
  margin: 0 1rem;
  transition: all 0.3s ease;
}

.step-line.done {
  background: #28a745;
}

/* Card Panel */
.card-panel {
  width: 100%;
  max-width: 500px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  margin: 1rem 0;
}

.card-header-section {
  text-align: center;
  margin-bottom: 2rem;
}

.card-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.card-icon-badge.blue {
  background: linear-gradient(135deg, #007bff, #0056b3);
}

.card-icon-badge.green {
  background: linear-gradient(135deg, #28a745, #1e7e34);
}

.card-icon-badge.purple {
  background: linear-gradient(135deg, #6f42c1, #5a32a3);
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #212529;
}

.brand-highlight {
  background: linear-gradient(135deg, #ffc107, #e0a800);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.card-subtitle {
  color: #6c757d;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Form Section */
.form-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field-label {
  font-weight: 500;
  color: #495057;
  font-size: 0.9rem;
}

.required {
  color: #dc3545;
}

.input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.field-icon {
  position: absolute;
  left: 1rem;
  color: #6c757d;
  z-index: 2;
}

.field-icon.top {
  top: 1rem;
}

.field-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: white;
}

.field-input.has-prefix {
  padding-left: 4rem;
}

.field-input:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.field-input.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.field-input.verified {
  border-color: #28a745;
  background: #f8fff9;
}

.field-textarea {
  padding: 0.875rem 1rem 0.875rem 2.75rem;
  resize: vertical;
  min-height: 80px;
}

.textarea-wrap .field-icon {
  top: 1rem;
}

.input-prefix {
  position: absolute;
  left: 1rem;
  color: #495057;
  font-weight: 500;
  z-index: 2;
}

.verified-badge {
  position: absolute;
  right: 1rem;
  color: #28a745;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.field-error {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.25rem;
  min-height: 1.2rem;
}

/* OTP Boxes */
.otp-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1rem 0;
}

.otp-box {
  width: 60px;
  height: 60px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.otp-box:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.otp-box.filled {
  border-color: #28a745;
  background: #f8fff9;
}

.otp-box.error-box {
  border-color: #dc3545;
  background: #fff5f5;
}

/* OTP Timer */
.otp-timer-wrap {
  text-align: center;
  margin: 1rem 0;
}

.timer-text {
  color: #6c757d;
  font-size: 0.9rem;
}

.btn-resend {
  background: none;
  border: none;
  color: #007bff;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
  padding: 0.5rem;
}

.btn-resend:hover {
  color: #0056b3;
}

.btn-resend:disabled {
  color: #6c757d;
  cursor: not-allowed;
  text-decoration: none;
}

/* Buttons */
.btn-primary {
  width: 100%;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-primary.success {
  background: linear-gradient(135deg, #28a745, #1e7e34);
}

.btn-primary.success:hover {
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-back {
  background: none;
  border: 1px solid #e9ecef;
  color: #6c757d;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.btn-back:hover {
  border-color: #007bff;
  color: #007bff;
}

.btn-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.btn-text {
  flex: 1;
}

.btn-arrow {
  font-size: 1.1rem;
}

/* Terms */
.terms-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.terms-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.5;
}

.terms-checkbox {
  margin-top: 0.125rem;
  width: 18px;
  height: 18px;
  accent-color: #007bff;
}

.link {
  color: #007bff;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

/* Helper Text */
.helper-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.85rem;
  text-align: center;
  justify-content: center;
}

/* Success Screen */
.success-wrap {
  text-align: center;
}

.success-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #28a745, #1e7e34);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
}

.success-ring::before {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(40, 167, 69, 0.2);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.success-icon {
  color: white;
  font-size: 2rem;
}

.success-meta {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: #495057;
  font-size: 0.95rem;
}

.meta-row i {
  color: #007bff;
  width: 20px;
}

/* Footer */
.page-footer {
  text-align: center;
  padding: 1rem;
  color: #6c757d;
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .main-center {
    padding: 1rem 0.5rem;
  }
  
  .card-panel {
    margin: 0.5rem;
    padding: 1.5rem;
  }
  
  .step-track {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
  }
  
  .step-item span {
    font-size: 0.75rem;
  }
  
  .step-dot {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .step-line {
    width: 40px;
    margin: 0 0.5rem;
  }
  
  .otp-group {
    gap: 0.75rem;
  }
  
  .otp-box {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
  
  .top-bar {
    padding: 0.75rem 1rem;
  }
  
  .logo-img {
    height: 32px;
  }
  
  .secure-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}