/* ========================================================
   mobile.css — GiranTech B3 Mobile App Interface
   Estilo: Dark Fintech Glassmorphism Mobile-First
   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600;700&display=swap');

:root {
  --bg-deep:        #060b14;
  --bg-surface:     #0c1424;
  --bg-card:        rgba(17, 27, 46, 0.75);
  --bg-card-hover:  rgba(25, 39, 66, 0.85);
  --bg-elevated:    #162238;
  --border:         rgba(255, 255, 255, 0.08);
  --border-subtle:  rgba(255, 255, 255, 0.04);
  --border-active:  rgba(0, 255, 136, 0.35);

  --green:          #00ff88;
  --green-glow:     rgba(0, 255, 136, 0.25);
  --green-bg:       rgba(0, 255, 136, 0.12);
  --red:            #ff4466;
  --red-glow:       rgba(255, 68, 102, 0.25);
  --red-bg:         rgba(255, 68, 102, 0.12);
  --yellow:         #ffc040;
  --yellow-bg:      rgba(255, 192, 64, 0.12);
  --blue:           #38bdf8;
  --blue-bg:        rgba(56, 189, 248, 0.12);
  --purple:         #a78bfa;
  --gold:           #f6c837;

  --text-primary:   #f8fafc;
  --text-secondary: #94a3b8;
  --text-dim:       #64748b;

  --bottom-bar-height: 68px;
  --radius-xl:      20px;
  --radius-lg:      14px;
  --radius-md:      10px;
  --radius-sm:      6px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  position: relative;
  user-select: none;
  -webkit-user-select: none;
}

/* Background ambient glow */
body::before {
  content: '';
  position: fixed;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, rgba(56, 189, 248, 0.04) 50%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* ── HEADER SUPERIOR ── */
.mobile-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: calc(56px + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  padding-left: 14px;
  padding-right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(12, 20, 36, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 90;
}

.brand-section {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.brand-icon-box {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0,255,136,0.2), rgba(56,189,248,0.2));
  border: 1px solid rgba(0,255,136,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.brand-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.2px;
}

.brand-title span {
  color: var(--green);
}

.brand-sub {
  font-size: 9px;
  font-weight: 600;
  background: rgba(246, 200, 55, 0.15);
  color: var(--gold);
  padding: 1px 5px;
  border-radius: 4px;
  margin-left: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-mode-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 9px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(255, 192, 64, 0.12);
  border: 1px solid rgba(255, 192, 64, 0.3);
  color: var(--yellow);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-mode-toggle.real {
  background: rgba(0, 255, 136, 0.12);
  border-color: rgba(0, 255, 136, 0.35);
  color: var(--green);
}

.btn-mode-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.btn-switch-desktop {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-switch-desktop:active {
  background: rgba(255, 255, 255, 0.12);
  transform: scale(0.95);
}

/* ── STATUS BAR MINI ── */
.mobile-status-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 14px;
  background: rgba(6, 11, 20, 0.95);
  border-bottom: 1px solid var(--border-subtle);
  font-size: 11px;
  position: sticky;
  top: calc(56px + env(safe-area-inset-top, 0px));
  z-index: 80;
}

.status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4466;
  transition: background 0.3s;
}

.status-dot.connected {
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.active-symbol-badge {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

/* ── CONTAINER PRINCIPAL E ABAS ── */
.mobile-app-body {
  padding: 14px 14px calc(var(--bottom-bar-height) + env(safe-area-inset-bottom, 0px) + 20px) 14px;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.22s ease-out;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── CARDS DIGITAIS MOBILE ── */
.mobile-card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

/* Card Saldo Estilo Cartão Fintech */
.fintech-balance-card {
  background: linear-gradient(135deg, #101c33 0%, #0d1526 100%);
  border: 1.5px solid rgba(56, 189, 248, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.fintech-balance-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.fbc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.fbc-tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.fbc-mode-pill {
  font-size: 10px;
  padding: 2px 7px;
  border-radius: 12px;
  font-weight: 600;
  background: rgba(246, 200, 55, 0.15);
  color: var(--gold);
  border: 1px solid rgba(246, 200, 55, 0.3);
}

.fbc-balance-main {
  font-family: 'JetBrains Mono', monospace;
  font-size: 27px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 12px;
}

.fbc-grid-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  background: rgba(0, 0, 0, 0.22);
  border-radius: var(--radius-md);
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.03);
}

.fbc-stat-item {
  display: flex;
  flex-direction: column;
}

.fbc-stat-lbl {
  font-size: 10px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.fbc-stat-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.fbc-stat-val.profit-pos {
  color: var(--green);
}

.fbc-stat-val.profit-neg {
  color: var(--red);
}

/* ── BOTÃO DE AÇÃO PRINCIPAL TOUCH ── */
.btn-bot-action-touch {
  width: 100%;
  height: 52px;
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 14px;
}

.btn-bot-action-touch.start {
  background: linear-gradient(135deg, #00ff88, #00b359);
  color: #04140a;
  box-shadow: 0 6px 20px rgba(0, 255, 136, 0.35);
}

.btn-bot-action-touch.stop {
  background: linear-gradient(135deg, #ff4466, #c71e3d);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 68, 102, 0.35);
}

.btn-bot-action-touch:active {
  transform: scale(0.97);
}

/* ── RADAR DE MERCADO & STATUS B3 ── */
.market-strip-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
}

.market-price-box {
  display: flex;
  flex-direction: column;
}

.mp-symbol {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.mp-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
}

.market-pills-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.b3-session-badge {
  font-size: 10px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(0, 255, 136, 0.12);
  color: var(--green);
  border: 1px solid rgba(0, 255, 136, 0.25);
}

.b3-session-badge.closed {
  background: rgba(255, 68, 102, 0.12);
  color: var(--red);
  border-color: rgba(255, 68, 102, 0.25);
}

/* ── SINAL DE ESTRATÉGIA CARD ── */
.strategy-signal-card {
  border-left: 4px solid var(--blue);
}

.strategy-signal-card.buy {
  border-left-color: var(--green);
}

.strategy-signal-card.sell {
  border-left-color: var(--red);
}

.signal-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.signal-badge-pill {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  background: rgba(56, 189, 248, 0.15);
  color: var(--blue);
}

.signal-badge-pill.buy {
  background: var(--green-bg);
  color: var(--green);
}

.signal-badge-pill.sell {
  background: var(--red-bg);
  color: var(--red);
}

.targets-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.target-mini-card {
  background: rgba(0,0,0,0.2);
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.04);
}

.target-mini-card.sl {
  border-left: 3px solid var(--red);
}

.target-mini-card.tp {
  border-left: 3px solid var(--green);
}

.tm-lbl {
  font-size: 10px;
  color: var(--text-secondary);
}

.tm-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
}

/* ── ABA 2: GRÁFICO ── */
.chart-controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.chart-tf-pills {
  display: flex;
  gap: 5px;
}

.btn-tf-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 5px 9px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-tf-pill.active {
  background: rgba(56, 189, 248, 0.2);
  border-color: #38bdf8;
  color: #fff;
}

.select-mobile-symbol {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 8px;
  border-radius: 8px;
  outline: none;
}

.mobile-chart-wrapper {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px 6px;
  height: 380px;
  min-height: 340px;
  position: relative;
  margin-bottom: 12px;
  overflow: hidden;
}

#mobileCandleChart {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/* ── ABA 3: OPERAÇÕES (POSIÇÕES) ── */
.pos-card-mobile {
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px;
  margin-bottom: 10px;
}

.pos-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.pos-type-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
}

.pos-type-pill.buy {
  background: var(--green-bg);
  color: var(--green);
}

.pos-type-pill.sell {
  background: var(--red-bg);
  color: var(--red);
}

.pos-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  font-size: 11.5px;
  margin-bottom: 10px;
}

.btn-close-pos-touch {
  width: 100%;
  height: 36px;
  background: rgba(255, 68, 102, 0.15);
  border: 1px solid rgba(255, 68, 102, 0.35);
  color: #ff6b85;
  border-radius: 8px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-close-pos-touch:active {
  background: rgba(255, 68, 102, 0.35);
  color: #fff;
}

.empty-state-card {
  text-align: center;
  padding: 30px 16px;
  color: var(--text-dim);
}

.empty-state-card .empty-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

/* ── ABA 4: AJUSTES & CONTROLE ── */
.settings-group {
  margin-bottom: 12px;
}

.settings-label {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 5px;
  display: block;
}

.input-mobile {
  width: 100%;
  height: 40px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: #fff;
  padding: 0 12px;
  font-size: 13px;
  outline: none;
  font-family: 'JetBrains Mono', monospace;
  transition: border-color 0.2s;
}

.input-mobile:focus {
  border-color: var(--green);
}

.btn-action-secondary {
  width: 100%;
  height: 42px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 10px;
  transition: all 0.2s;
}

.btn-action-secondary:active {
  background: rgba(255, 255, 255, 0.12);
}

/* Mini Terminal Logs */
.mobile-logs-terminal {
  background: #040811;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px;
  height: 180px;
  overflow-y: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  line-height: 1.5;
}

.log-entry-mobile {
  margin-bottom: 4px;
  word-break: break-word;
}

/* ── BOTTOM NAVIGATION BAR (FIXA NO RODAPÉ) ── */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(var(--bottom-bar-height) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(10, 16, 28, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 100;
}

.nav-item-touch {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease;
}

.nav-item-touch .nav-icon {
  font-size: 20px;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-item-touch .nav-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.nav-item-touch.active {
  color: var(--green);
}

.nav-item-touch.active .nav-icon {
  transform: translateY(-2px) scale(1.1);
}

.nav-badge-pill {
  position: absolute;
  top: 8px;
  right: 25%;
  background: #ff4466;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 10px;
  display: none;
}

/* ── MODAL FULLSCREEN / SHEET MOBILE ── */
.mobile-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 150;
  display: none;
  align-items: flex-end;
}

.mobile-modal-overlay.open {
  display: flex;
  animation: fadeIn 0.2s ease;
}

.mobile-sheet-content {
  width: 100%;
  max-height: 85vh;
  background: #0d1526;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-top: 1.5px solid var(--border);
  padding: 20px 16px calc(20px + env(safe-area-inset-bottom, 0px)) 16px;
  overflow-y: auto;
}

.sheet-drag-handle {
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin: 0 auto 16px auto;
}

.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.sheet-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.btn-close-sheet {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--text-secondary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
}

/* ── LOGIN GATE MOBILE ── */
html.giran-unauth .mobile-app-body,
html.giran-unauth .mobile-header,
html.giran-unauth .mobile-status-strip,
html.giran-unauth .mobile-bottom-nav {
  display: none !important;
}

html.giran-unauth #loginGateOverlayMobile {
  display: flex !important;
}

.login-gate-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, #0d1a33 0%, #060b14 100%);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  backdrop-filter: blur(20px);
}

.login-card-container {
  width: 100%;
  max-width: 380px;
  background: rgba(13, 22, 38, 0.95);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 18px;
  padding: 24px 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 40px rgba(56, 189, 248, 0.15);
}

.login-brand {
  text-align: center;
  margin-bottom: 18px;
}
.login-logo-icon {
  font-size: 34px;
  margin-bottom: 4px;
  display: inline-block;
  filter: drop-shadow(0 0 12px #38bdf8);
}
.login-brand h2 {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin: 0;
}
.login-brand h2 span {
  color: #38bdf8;
}
.login-sub {
  font-size: 11.5px;
  color: #94a3b8;
  margin-top: 3px;
}

.login-notice-box {
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 16px;
}

.login-form-group {
  margin-bottom: 14px;
}
.login-form-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 5px;
}
.mask-hint {
  font-size: 10px;
  color: #38bdf8;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
}
.input-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.input-icon {
  position: absolute;
  left: 12px;
  font-size: 14px;
  pointer-events: none;
  opacity: 0.8;
}
.input-icon-wrapper input {
  width: 100%;
  height: 44px;
  padding: 0 38px 0 38px;
  background: rgba(4, 9, 20, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  color: #fff;
  font-size: 13.5px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  outline: none;
}
.input-icon-wrapper input:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.2);
}
.input-help-text {
  font-size: 9.5px;
  color: #64748b;
  margin-top: 3px;
}
.btn-toggle-pwd {
  position: absolute;
  right: 8px;
  background: transparent;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  font-size: 15px;
  padding: 4px;
}

.login-error-alert {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  border-radius: 8px;
  color: #fca5a5;
  font-size: 11.5px;
  padding: 8px 10px;
  margin-bottom: 14px;
  line-height: 1.4;
}

.btn-login-submit {
  width: 100%;
  height: 44px;
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-login-submit:active {
  transform: scale(0.98);
}

.login-footer {
  margin-top: 16px;
  text-align: center;
  font-size: 9.5px;
  color: #475569;
}
