/* TrackPro Main CSS - All Pages */
:root {
  --primary: #1976D2;
  --primary-dark: #0D47A1;
  --primary-light: #BBDEFB;
  --accent: #FF6F00;
  --success: #4CAF50;
  --success-dark: #2E7D32;
  --warning: #FF9800;
  --danger: #F44336;
  --danger-dark: #C62828;
  --sidebar-bg: #1A1F2E;
  --sidebar-hover: #252B3B;
  --sidebar-active: #1976D2;
  --text-dark: #1A1F2E;
  --text-medium: #555;
  --text-light: #888;
  --border: #E0E0E0;
  --bg-light: #F5F7FA;
  --card-bg: #FFFFFF;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --sidebar-width: 240px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Inter', 'Segoe UI', sans-serif; background: var(--bg-light); color: var(--text-dark); }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; outline: none; }
input, select, textarea { outline: none; border: none; font-family: inherit; }

/* ===================== TOAST ===================== */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: #333; color: white; padding: 12px 24px; border-radius: 8px;
  font-size: 14px; z-index: 9999; opacity: 0; transition: opacity 0.3s;
  pointer-events: none; white-space: nowrap;
}
.toast.show { opacity: 1; }
.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.warning { background: var(--warning); }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 10px 20px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600; transition: all 0.2s;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-success { background: var(--success); color: white; }
.btn-success:hover { background: var(--success-dark); }
.btn-danger { background: var(--danger); color: white; }
.btn-danger:hover { background: var(--danger-dark); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 10px; }
.btn-block { width: 100%; }

/* ===================== STATUS BADGES ===================== */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600;
}
.badge-online { background: #E8F5E9; color: var(--success-dark); }
.badge-online::before { content:''; width:7px; height:7px; border-radius:50%; background:var(--success); display:inline-block; }
.badge-offline { background: #F5F5F5; color: #757575; }
.badge-offline::before { content:''; width:7px; height:7px; border-radius:50%; background:#9E9E9E; display:inline-block; }
.badge-pending { background: #FFF3E0; color: #E65100; }
.badge-accepted { background: #E8F5E9; color: var(--success-dark); }
.badge-rejected { background: #FFEBEE; color: var(--danger-dark); }

/* ===================== DASHBOARD LAYOUT ===================== */
.app-layout { display: flex; height: 100vh; overflow: hidden; }

/* Sidebar */
.sidebar {
  width: var(--sidebar-width); background: var(--sidebar-bg); color: white;
  display: flex; flex-direction: column; flex-shrink: 0;
  height: 100vh; overflow-y: auto; position: fixed; left: 0; top: 0; z-index: 100;
  transition: transform 0.3s;
}
.sidebar-logo {
  padding: 20px 20px 16px; border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 10px;
}
.sidebar-logo .logo-icon {
  width: 36px; height: 36px; background: var(--primary);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.sidebar-logo .logo-text { font-size: 20px; font-weight: 700; letter-spacing: 0.5px; }
.sidebar-logo .logo-text span { color: #64B5F6; }

.sidebar-nav { flex: 1; padding: 12px 0; }
.nav-item {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 20px; color: rgba(255,255,255,0.7); font-size: 14px;
  cursor: pointer; transition: all 0.2s; position: relative;
}
.nav-item:hover { background: var(--sidebar-hover); color: white; }
.nav-item.active { background: var(--sidebar-active); color: white; }
.nav-item .nav-icon { font-size: 18px; width: 22px; text-align: center; }
.nav-item .nav-badge {
  margin-left: auto; background: var(--danger); color: white;
  font-size: 11px; font-weight: 700; padding: 2px 7px; border-radius: 10px;
}
.sidebar-footer { padding: 12px 0 16px; border-top: 1px solid rgba(255,255,255,0.08); }

/* Main Content */
.main-content {
  margin-left: var(--sidebar-width); flex: 1; height: 100vh;
  overflow-y: auto; display: flex; flex-direction: column;
}

.topbar {
  background: white; padding: 14px 24px; display: flex; align-items: center;
  justify-content: space-between; box-shadow: 0 1px 4px rgba(0,0,0,0.06); position: sticky; top: 0; z-index: 50;
}
.topbar-left { display: flex; align-items: center; gap: 12px; }
.topbar-left h1 { font-size: 18px; font-weight: 600; }
.hamburger { display: none; background: none; font-size: 22px; cursor: pointer; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.user-avatar {
  width: 36px; height: 36px; border-radius: 50%; background: var(--primary);
  color: white; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; cursor: pointer;
}

/* Page sections */
.page-section { display: none; padding: 20px 24px; flex: 1; }
.page-section.active { display: block; }

/* Stats Cards */
.stats-row { display: flex; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.stat-card {
  flex: 1; min-width: 140px; background: white; border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow); display: flex;
  align-items: center; gap: 14px;
}
.stat-icon { font-size: 28px; }
.stat-info .stat-value { font-size: 24px; font-weight: 700; line-height: 1; }
.stat-info .stat-label { font-size: 12px; color: var(--text-light); margin-top: 4px; }
.stat-card.green .stat-value { color: var(--success); }
.stat-card.red .stat-value { color: var(--danger); }
.stat-card.yellow .stat-value { color: var(--warning); }
.stat-card.blue .stat-value { color: var(--primary); }

/* Content grid */
.content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 20px; }
.content-grid-3 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.card {
  background: white; border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden;
}
.card-header {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.card-header h3 { font-size: 15px; font-weight: 600; }
.card-header a { font-size: 13px; color: var(--primary); }
.card-body { padding: 16px 18px; }

/* Map Container */
#main-map, #live-map, #history-map { width: 100%; height: 100%; min-height: 380px; border-radius: 0; }
.map-card { height: 420px; overflow: hidden; }
.map-card .card-body { padding: 0; height: calc(100% - 49px); }

/* Vehicle Markers */
.vmarker {
  background: #1976D2; border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg); width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border: 3px solid #0D47A1; box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.vmarker span { transform: rotate(45deg); font-size: 18px; display: block; }
.vmarker.online { background: #4CAF50; border-color: #2E7D32; }
.vmarker.offline { background: #9E9E9E; border-color: #616161; }

/* Track Input Box */
.track-box { padding: 16px 18px; }
.track-input-row { display: flex; gap: 8px; margin-top: 10px; }
.track-input-row .phone-prefix {
  background: var(--bg-light); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 12px; font-size: 14px; color: var(--text-medium);
  white-space: nowrap;
}
.track-input-row input {
  flex: 1; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 10px 14px; font-size: 14px;
}
.track-input-row input:focus { border-color: var(--primary); }
.track-input-row .btn { padding: 10px 16px; white-space: nowrap; }

/* Numbers List */
.numbers-list { max-height: 320px; overflow-y: auto; }
.number-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 18px;
  border-bottom: 1px solid var(--border); transition: background 0.2s;
}
.number-item:hover { background: var(--bg-light); }
.number-item:last-child { border-bottom: none; }
.number-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--primary-light);
  display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0;
}
.number-info { flex: 1; min-width: 0; }
.number-info .name { font-size: 14px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.number-info .phone { font-size: 12px; color: var(--text-light); }
.number-meta { text-align: right; }
.number-meta .speed { font-size: 13px; font-weight: 600; color: var(--primary); }
.number-meta .last-seen { font-size: 11px; color: var(--text-light); }
.number-menu { background: none; font-size: 18px; color: var(--text-light); padding: 4px 6px; }

/* Alerts List */
.alert-item {
  display: flex; align-items: flex-start; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.alert-item:last-child { border-bottom: none; }
.alert-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; margin-top: 4px; }
.alert-info .alert-msg { font-size: 13px; font-weight: 500; }
.alert-info .alert-phone { font-size: 12px; color: var(--text-light); }
.alert-time { font-size: 12px; color: var(--text-light); margin-left: auto; white-space: nowrap; }

/* Summary */
.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.summary-item { text-align: center; padding: 12px; background: var(--bg-light); border-radius: var(--radius-sm); }
.summary-item .s-value { font-size: 20px; font-weight: 700; color: var(--primary); }
.summary-item .s-label { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* ===================== MOBILE APP STYLES ===================== */
.mobile-app {
  max-width: 480px; margin: 0 auto; min-height: 100vh;
  background: white; display: flex; flex-direction: column;
  box-shadow: 0 0 30px rgba(0,0,0,0.15);
}
.mobile-header {
  display: flex; align-items: center; padding: 16px 18px; gap: 12px;
  background: white; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 10;
}
.mobile-header .back-btn { font-size: 22px; color: var(--text-dark); cursor: pointer; background: none; }
.mobile-header h2 { flex: 1; font-size: 18px; font-weight: 600; }
.mobile-header .header-action { font-size: 20px; color: var(--text-medium); background: none; cursor: pointer; }
.mobile-body { flex: 1; overflow-y: auto; }

/* ===================== SOS PULSE ===================== */
.sos-circle {
  width: 160px; height: 160px; border-radius: 50%;
  background: var(--danger); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px; font-weight: 800; cursor: pointer;
  animation: sos-pulse 1.5s infinite; box-shadow: 0 0 0 0 rgba(244,67,54,0.7);
  border: 6px solid var(--danger-dark); letter-spacing: 2px;
}
@keyframes sos-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(244,67,54,0.7); }
  70%  { box-shadow: 0 0 0 30px rgba(244,67,54,0); }
  100% { box-shadow: 0 0 0 0 rgba(244,67,54,0); }
}

/* ===================== BOTTOM NAV ===================== */
.bottom-nav {
  display: flex; background: white; border-top: 1px solid var(--border);
  position: sticky; bottom: 0;
}
.bnav-item {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  padding: 10px 4px; font-size: 11px; color: var(--text-light);
  cursor: pointer; transition: color 0.2s;
}
.bnav-item .bnav-icon { font-size: 22px; margin-bottom: 3px; }
.bnav-item.active { color: var(--primary); }
.bnav-sos .bnav-icon {
  width: 50px; height: 50px; border-radius: 50%; background: var(--danger);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px; font-weight: 700; margin-top: -20px;
  box-shadow: 0 4px 12px rgba(244,67,54,0.5);
}

/* ===================== LIVE TRACKING ===================== */
.live-map-wrap { flex: 1; position: relative; min-height: 350px; }
.live-map-wrap #live-map { width: 100%; height: 100%; min-height: 350px; }
.live-info-card {
  background: white; padding: 16px 18px; border-top: 1px solid var(--border);
}
.live-person-row { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.live-avatar {
  width: 52px; height: 52px; border-radius: 50%; background: var(--primary);
  color: white; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; flex-shrink: 0;
}
.live-name { font-size: 16px; font-weight: 700; }
.live-status { font-size: 13px; color: var(--success); font-weight: 500; }
.live-speed { font-size: 22px; font-weight: 800; color: var(--primary); margin-left: auto; }
.live-speed small { font-size: 12px; font-weight: 400; color: var(--text-light); }
.live-meta { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-medium); margin-bottom: 4px; }
.live-actions { display: flex; gap: 10px; margin-top: 14px; }
.live-action-btn {
  flex: 1; padding: 10px; border-radius: var(--radius-sm); font-size: 13px; font-weight: 600;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  background: var(--bg-light); color: var(--text-medium); transition: all 0.2s;
}
.live-action-btn:hover { background: var(--primary); color: white; }
.live-action-btn .la-icon { font-size: 20px; }

/* ===================== HISTORY PAGE ===================== */
.history-map-wrap { height: 320px; }
.history-map-wrap #history-map { width: 100%; height: 100%; }
.date-selector {
  padding: 12px 18px; background: white; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.date-selector select {
  flex: 1; padding: 9px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 14px; background: var(--bg-light);
}
.history-stats { padding: 16px 18px; }
.history-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.h-stat { background: var(--bg-light); border-radius: var(--radius-sm); padding: 12px 14px; }
.h-stat .h-val { font-size: 18px; font-weight: 700; color: var(--primary); }
.h-stat .h-label { font-size: 12px; color: var(--text-light); margin-top: 3px; }

/* ===================== REQUEST PAGE ===================== */
.request-body {
  display: flex; flex-direction: column; align-items: center;
  padding: 40px 24px; text-align: center;
}
.request-bell { font-size: 48px; margin-bottom: 24px; animation: bell-ring 1s ease infinite; }
@keyframes bell-ring {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-15deg); }
  75% { transform: rotate(15deg); }
}
.request-avatar {
  width: 90px; height: 90px; border-radius: 50%; background: var(--primary);
  color: white; font-size: 32px; font-weight: 700; display: flex;
  align-items: center; justify-content: center; margin-bottom: 18px;
  border: 4px solid var(--primary-light);
}
.request-name { font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.request-phone { font-size: 15px; color: var(--text-medium); margin-bottom: 10px; }
.request-text { font-size: 15px; color: var(--text-medium); margin-bottom: 36px; }
.request-actions { display: flex; gap: 14px; width: 100%; }
.request-actions .btn { flex: 1; font-size: 16px; padding: 16px; border-radius: 12px; }

/* ===================== ADD NUMBER PAGE ===================== */
.add-number-body { padding: 24px 18px; }
.add-number-desc { font-size: 14px; color: var(--text-medium); margin-bottom: 20px; }
.phone-input-group {
  display: flex; gap: 0; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 16px;
}
.phone-input-group .prefix {
  background: var(--bg-light); padding: 13px 14px; font-size: 15px;
  font-weight: 600; color: var(--text-medium); border-right: 1.5px solid var(--border);
}
.phone-input-group input {
  flex: 1; padding: 13px 14px; font-size: 15px;
}
.phone-input-group input:focus { background: #fafffe; }
.recent-requests { margin-top: 28px; }
.recent-requests h4 { font-size: 15px; font-weight: 600; margin-bottom: 14px; }
.request-item {
  display: flex; align-items: center; gap: 12px; padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.request-item:last-child { border-bottom: none; }
.request-item-info { flex: 1; }
.request-item-info .r-name { font-size: 14px; font-weight: 600; }
.request-item-info .r-phone { font-size: 12px; color: var(--text-light); }
.request-item .r-time { font-size: 12px; color: var(--text-light); }

/* ===================== LOGIN PAGE ===================== */
.login-page { display: flex; min-height: 100vh; }
.login-left {
  flex: 1.2; background: linear-gradient(135deg, #0D47A1 0%, #1976D2 50%, #42A5F5 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 60px 48px; color: white; position: relative; overflow: hidden;
}
.login-left::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.login-left::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 250px; height: 250px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 48px; }
.brand-logo .bl-icon {
  width: 48px; height: 48px; background: rgba(255,255,255,0.2);
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 26px;
}
.brand-logo .bl-name { font-size: 28px; font-weight: 800; letter-spacing: 1px; }
.brand-logo .bl-name span { color: #BBDEFB; }
.brand-tagline { font-size: 28px; font-weight: 700; line-height: 1.3; margin-bottom: 16px; text-align: center; }
.brand-sub { font-size: 15px; opacity: 0.85; text-align: center; margin-bottom: 48px; }
.map-animation {
  width: 280px; height: 180px; background: rgba(255,255,255,0.1);
  border-radius: 16px; margin-bottom: 40px; display: flex;
  align-items: center; justify-content: center; font-size: 72px;
  position: relative; overflow: hidden;
}
.map-animation .map-ping {
  position: absolute; width: 14px; height: 14px; border-radius: 50%;
  background: #FF6F00; animation: map-ping 2s infinite;
}
.map-animation .map-ping:nth-child(2) { top: 40%; left: 30%; animation-delay: 0.5s; background: #4CAF50; }
.map-animation .map-ping:nth-child(3) { top: 60%; right: 25%; animation-delay: 1s; background: white; }
@keyframes map-ping {
  0% { transform: scale(1); opacity:1; box-shadow: 0 0 0 0 rgba(255,111,0,0.6); }
  100% { transform: scale(1.5); opacity:0.3; box-shadow: 0 0 0 20px rgba(255,111,0,0); }
}
.feature-list { list-style: none; width: 100%; }
.feature-list li {
  display: flex; align-items: center; gap: 12px; padding: 10px 0;
  font-size: 14px; border-bottom: 1px solid rgba(255,255,255,0.12);
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li .fi { font-size: 20px; }

.login-right {
  flex: 1; display: flex; align-items: center; justify-content: center;
  padding: 40px 48px; background: white;
}
.login-form-wrap { width: 100%; max-width: 420px; }
.login-form-wrap .form-title { font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.login-form-wrap .form-sub { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.form-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--border); margin-bottom: 28px; }
.form-tab {
  padding: 10px 24px; font-size: 15px; font-weight: 600; background: none;
  color: var(--text-light); cursor: pointer; border-bottom: 3px solid transparent;
  margin-bottom: -2px; transition: all 0.2s;
}
.form-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 7px; color: var(--text-medium); }
.form-group .input-wrap { position: relative; }
.form-group .input-wrap .input-icon {
  position: absolute; left: 13px; top: 50%; transform: translateY(-50%);
  font-size: 16px; color: var(--text-light);
}
.form-group input {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 12px 14px 12px 38px; font-size: 14px; transition: border 0.2s;
}
.form-group input:focus { border-color: var(--primary); }

/* Phone prefix inside input wrap */
.phone-prefix-wrap { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; padding: 0 !important; }
.phone-prefix-wrap .input-icon { padding-left: 12px; flex-shrink: 0; }
.phone-prefix-wrap .country-code { padding: 0 8px 0 6px; font-size: 14px; font-weight: 600; color: var(--text-medium); border-right: 1.5px solid var(--border); height: 100%; display: flex; align-items: center; background: var(--bg-light); align-self: stretch; }
.phone-prefix-wrap input { flex: 1; border: none !important; padding: 12px 14px; font-size: 14px; background: transparent; }
.phone-prefix-wrap input:focus { outline: none; }
.phone-prefix-wrap:focus-within { border-color: var(--primary); }

.form-submit { width: 100%; padding: 14px; background: var(--primary); color: white; border-radius: var(--radius-sm); font-size: 15px; font-weight: 700; margin-top: 8px; transition: background 0.2s; }
.form-submit:hover { background: var(--primary-dark); }
.demo-hint { margin-top: 16px; padding: 12px 14px; background: #FFF3E0; border-radius: var(--radius-sm); font-size: 13px; color: #E65100; }
.form-panel { display: none; }
.form-panel.active { display: block; }
/* ===================== FORMS (other pages) ===================== */
.form-section input, .form-section select, .form-section textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 11px 14px; font-size: 14px; transition: border 0.2s; background: white;
}
.form-section input:focus, .form-section select:focus { border-color: var(--primary); }
.form-section .field-group { margin-bottom: 16px; }
.form-section label { display: block; font-size: 13px; font-weight: 600; color: var(--text-medium); margin-bottom: 7px; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; }
  .content-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --sidebar-width: 0px; }
  .sidebar { transform: translateX(-240px); }
  .sidebar.open { transform: translateX(0); width: 240px; }
  .main-content { margin-left: 0; }
  .hamburger { display: flex; }
  .stats-row { flex-direction: column; }
  .stat-card { min-width: unset; }
  .login-left { display: none; }
  .login-right { padding: 32px 24px; }
  .page-section { padding: 16px; }
}
