/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Paleta TechSuture — Azul Marinho + Branco */
  --primary: #002D72;        /* azul marinho principal */
  --primary-dark: #001a4a;   /* azul marinho escuro (hover) */
  --primary-mid: #003f9e;    /* azul marinho médio */
  --primary-light: #e6edf8;  /* azul claro para fundos */
  --primary-xlight: #f0f4fb; /* azul muito claro */
  --accent: #0057B7;         /* azul vivo para destaques */

  --success: #0e9f6e;
  --success-light: #def7ec;
  --warning: #e3a008;
  --warning-light: #fdf6b2;
  --danger: #e02424;
  --danger-light: #fde8e8;
  --info: #0057B7;
  --info-light: #dce8f7;
  --orange: #ff5a1f;
  --orange-light: #feecdc;

  --gray-50: #f7f9fc;
  --gray-100: #eef1f7;
  --gray-200: #dce2ef;
  --gray-300: #c4cede;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;
  --white: #fff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 8px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
  --shadow: 0 1px 3px rgba(0,0,0,.1), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.1);
  --navbar-h: 60px;
}

html { font-size: 14px; }
body { font-family: var(--font); background: var(--gray-50); color: var(--gray-800); line-height: 1.5; }
body::before {
  content: ''; position: fixed; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 60%, #4da6ff 100%);
  z-index: 9999;
}
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
code { background: var(--gray-100); border-radius: 4px; padding: 1px 5px; font-size: .85em; }

/* ===================== NAVBAR ===================== */
.navbar {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; gap: 16px;
  height: var(--navbar-h); padding: 0 24px;
  background: var(--primary); color: var(--white);
  box-shadow: 0 2px 12px rgba(0,45,114,.35);
  border-bottom: 3px solid var(--accent);
}
.navbar-brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.1rem; font-weight: 700; color: var(--white); margin-right: 16px;
  letter-spacing: -.02em;
}
.navbar-brand svg { opacity: .9; }
.navbar-brand span { text-transform: uppercase; letter-spacing: .06em; font-size: .95rem; }
.navbar-links { display: flex; gap: 4px; flex: 1; }
.nav-link {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: var(--radius);
  color: rgba(255,255,255,.75); font-size: .875rem; font-weight: 500;
  transition: all .15s; border-bottom: 2px solid transparent;
}
.nav-link:hover { background: rgba(255,255,255,.1); color: var(--white); text-decoration: none; }
.nav-link.active {
  background: rgba(255,255,255,.12); color: var(--white);
  border-bottom-color: var(--white);
}
.navbar-user { display: flex; align-items: center; gap: 10px; }
.user-name { color: rgba(255,255,255,.8); font-size: .85rem; }
.user-badge {
  font-size: .68rem; padding: 2px 9px; border-radius: 20px;
  font-weight: 700; background: rgba(255,255,255,.18); color: var(--white);
  text-transform: uppercase; letter-spacing: .04em;
}
.btn-logout {
  font-size: .8rem; color: rgba(255,255,255,.7);
  padding: 4px 12px; border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius); transition: all .15s;
}
.btn-logout:hover { background: rgba(255,255,255,.15); color: var(--white); text-decoration: none; }

/* ===================== LAYOUT ===================== */
.main-content { max-width: 1400px; margin: 0 auto; padding: 28px 24px 48px; }
.page-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 16px; margin-bottom: 24px; flex-wrap: wrap;
  padding-bottom: 20px; border-bottom: 2px solid var(--gray-200);
}
.page-title { font-size: 1.5rem; font-weight: 800; color: var(--primary); letter-spacing: -.02em; }
.page-subtitle { color: var(--gray-500); margin-top: 3px; font-size: .875rem; }
.page-actions { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 18px; border-radius: var(--radius);
  font-size: .875rem; font-weight: 600; cursor: pointer;
  border: 1.5px solid transparent; transition: all .15s;
  text-decoration: none; white-space: nowrap; letter-spacing: .01em;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.12); }
.btn:active { transform: none; box-shadow: none; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); }

.btn-success { background: var(--success); color: var(--white); border-color: var(--success); }
.btn-success:hover { background: #0a7a56; }

.btn-warning { background: var(--warning); color: var(--white); border-color: var(--warning); }
.btn-warning:hover { background: #c68a00; }

.btn-secondary { background: var(--white); color: var(--primary); border-color: var(--primary); }
.btn-secondary:hover { background: var(--primary-light); }

.btn-ghost { background: transparent; color: var(--gray-600); border-color: transparent; }
.btn-ghost:hover { background: var(--gray-100); transform: none; box-shadow: none; }

.btn-danger { background: var(--danger); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }
.btn-sm { padding: 5px 12px; font-size: .8rem; }

.btn-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 6px;
  background: transparent; border: 1px solid var(--gray-200);
  cursor: pointer; color: var(--gray-500); transition: all .15s;
}
.btn-icon:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary); transform: none; box-shadow: none; }
.btn-icon-retry:hover { background: var(--warning-light); color: var(--warning); border-color: var(--warning); }
.btn-icon-print:hover { background: var(--success-light); color: var(--success); border-color: var(--success); }
.btn-icon-preview:hover { background: #f0f4ff; color: #6366f1; border-color: #6366f1; }
.btn-icon-link:hover { background: #f0fdf4; color: #16a34a; border-color: #16a34a; }

.result-detail { margin-top: 10px; border: 1px solid var(--gray-200); border-radius: 6px; padding: 8px 12px; }
.result-detail summary { cursor: pointer; padding: 4px 0; font-size: .9rem; }
.result-detail[open] summary { margin-bottom: 8px; }

/* ===================== PREVIEW ETIQUETA (MODAL) ===================== */
.preview-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 12px;
}
.preview-status {
  font-size: .82rem;
  color: var(--gray-500);
  font-weight: 600;
}
.preview-imgwrap {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 160px;
}
.preview-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
.preview-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.preview-zpl {
  width: 100%;
  max-height: 320px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-all;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 10px;
  font-size: .72rem;
}

/* ===================== STATS GRID ===================== */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 12px; margin-bottom: 20px; }
.stat-card {
  background: var(--white); border-radius: var(--radius); padding: 18px 20px;
  border-left: 4px solid var(--gray-200); box-shadow: var(--shadow);
  transition: box-shadow .15s, transform .15s;
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.stat-card.stat-warning { border-left-color: var(--warning); }
.stat-card.stat-info    { border-left-color: var(--accent); }
.stat-card.stat-primary { border-left-color: var(--primary); }
.stat-card.stat-success { border-left-color: var(--success); }
.stat-card.stat-danger  { border-left-color: var(--danger); }
.stat-number { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label  { font-size: .72rem; color: var(--gray-500); margin-top: 5px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }

/* ===================== FILTER BAR ===================== */
.filter-bar { display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; align-items: center; }
.filter-bar-wrap { flex-wrap: wrap; }
.search-box {
  display: flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--gray-300); border-radius: var(--radius);
  padding: 8px 14px; flex: 1; min-width: 200px; transition: border .15s, box-shadow .15s;
}
.search-box:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.search-box svg { color: var(--primary); flex-shrink: 0; opacity: .7; }
.search-box input { border: none; outline: none; font-size: .875rem; background: transparent; width: 100%; color: var(--gray-800); }
.filter-select, .filter-input {
  padding: 8px 12px; border-radius: var(--radius);
  border: 1.5px solid var(--gray-300); background: var(--white);
  font-size: .875rem; color: var(--gray-800); outline: none; transition: border .15s;
}
.filter-select:focus, .filter-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.result-count { color: var(--gray-500); font-size: .8rem; margin-bottom: 8px; }

/* ===================== TABLE ===================== */
.table-container { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow-x: auto; border: 1px solid var(--gray-200); }
.data-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.data-table thead tr { background: var(--primary); }
.data-table th {
  padding: 11px 14px; text-align: left; font-weight: 600;
  color: var(--white); white-space: nowrap;
  font-size: .72rem; text-transform: uppercase; letter-spacing: .06em;
}
.data-table thead th:first-child { border-radius: 0; }
.data-table th.sortable { cursor: pointer; user-select: none; }
.data-table th.sortable:hover { background: var(--primary-mid); }
.sort-icon { opacity: .8; font-size: .8em; margin-left: 3px; }
.data-table td { padding: 10px 14px; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.data-table tbody tr:hover { background: var(--primary-xlight); }
.data-table tbody tr:last-child td { border-bottom: none; }
.loading-row, .empty-row, .error-row { text-align: center; color: var(--gray-400); padding: 40px !important; font-size: .9rem; }
.error-row { color: var(--danger); }

.status-row-ERRO td, .status-row-PENDENTE td { background: #fff5f5 !important; }
.status-row-PRONTO td { background: #f0fdf4 !important; }
.status-row-GERANDO td { background: #eff6ff !important; }
.status-row-GERADO td { background: #eff6ff !important; }
.status-row-IMPRIMINDO td { background: #f0fdf4 !important; }
.status-row-IMPRESSO td { background: #f0fdf4 !important; }

.td-acoes { white-space: nowrap; display: flex; gap: 4px; align-items: center; }
.td-dest { max-width: 140px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.td-cep small { color: var(--gray-400); }
.td-data { white-space: nowrap; }
.td-data small { line-height: 1.8; }
.td-dim small { color: var(--gray-400); }
.td-servico small { font-size: .78rem; }
.cod-servico { font-size: .72rem; color: var(--gray-400); font-family: monospace; }
.select-servico {
  font-size: .78rem; padding: 3px 6px; border-radius: 4px;
  border: 1.5px solid var(--warning); background: var(--warning-light);
  cursor: pointer; max-width: 140px;
}
.select-servico:focus { outline: none; border-color: var(--primary); }

.rastreio-code { font-family: monospace; font-size: .82rem; background: var(--gray-100); padding: 2px 6px; border-radius: 4px; }
.rastreio-copiavel { cursor: pointer; transition: background .15s; }
.rastreio-copiavel:hover { background: var(--primary-light); color: var(--primary); }

.peso-edit { display: flex; align-items: center; }
.input-peso {
  width: 80px; padding: 4px 8px; border: 1px solid var(--gray-300); border-radius: 6px;
  font-size: .875rem; outline: none; transition: border .15s;
}
.input-peso:focus { border-color: var(--primary); box-shadow: 0 0 0 2px var(--primary-light); }
.input-peso.input-error { border-color: var(--danger); }
.peso-fixo { color: var(--gray-700); font-weight: 500; }

/* ===================== BADGES ===================== */
.badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 20px; font-size: .7rem; font-weight: 700; white-space: nowrap; letter-spacing: .03em; text-transform: uppercase; }
.badge-warning  { background: var(--warning-light);  color: #92400e; }
.badge-info     { background: #dce8f7;               color: var(--primary); }
.badge-primary  { background: var(--primary-light);  color: var(--primary); }
.badge-success  { background: var(--success-light);  color: #065f46; }
.badge-danger   { background: var(--danger-light);   color: #991b1b; }
.badge-orange   { background: var(--orange-light);   color: #7c2d12; }
.badge-gray     { background: var(--gray-100);       color: var(--gray-600); }
.badge-admin    { background: var(--primary);        color: var(--white); }
.badge-operador { background: var(--primary-light);  color: var(--primary); }
.badge-visualizador { background: var(--gray-100);   color: var(--gray-600); }

/* ===================== PAGINATION ===================== */
.pagination { display: flex; align-items: center; gap: 8px; padding: 16px 0; justify-content: flex-end; flex-wrap: wrap; }
.page-info, .page-num { color: var(--gray-500); font-size: .85rem; }

/* ===================== MODAL ===================== */
.modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; }
.modal.aberto { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.modal-content { position: relative; background: var(--white); border-radius: 12px; width: 90%; max-width: 700px; max-height: 90vh; overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-lg); }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--gray-200); }
.modal-header h3 { font-size: 1rem; font-weight: 600; }
.modal-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--gray-400); line-height: 1; padding: 0 4px; }
.modal-close:hover { color: var(--danger); }
.modal-body { padding: 20px; overflow-y: auto; flex: 1; }
.modal-footer { padding: 12px 20px; border-top: 1px solid var(--gray-200); display: flex; gap: 8px; justify-content: flex-end; }
.modal-section { margin-bottom: 20px; }
.modal-section h4 { font-size: .85rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 8px; }
.info-grid > div { display: flex; flex-direction: column; gap: 2px; }
.info-grid label { font-size: .72rem; font-weight: 600; color: var(--gray-400); text-transform: uppercase; }
.info-grid span { font-size: .875rem; color: var(--gray-800); }

/* Logs */
.log-list { display: flex; flex-direction: column; gap: 6px; }
.log-item { display: flex; align-items: center; gap: 8px; padding: 6px 10px; background: var(--gray-50); border-radius: 6px; flex-wrap: wrap; font-size: .78rem; }
.log-tipo { font-weight: 600; color: var(--primary); background: var(--primary-light); padding: 1px 6px; border-radius: 4px; }
.log-user { color: var(--gray-600); }
.log-data { color: var(--gray-400); margin-left: auto; }
.log-det { color: var(--gray-500); width: 100%; margin-top: 2px; }

/* ===================== ALERTS ===================== */
.alert { padding: 10px 14px; border-radius: var(--radius); font-size: .875rem; margin-bottom: 12px; }
.alert-error { background: var(--danger-light); color: #991b1b; border: 1px solid #fca5a5; }
.alert-success { background: var(--success-light); color: #065f46; }
.alert-info { background: var(--info-light); color: #0e7490; }
.mt-2 { margin-top: 8px; }

/* ===================== TOAST ===================== */
#toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 8px; }
.toast {
  background: var(--primary); color: var(--white);
  padding: 12px 18px; border-radius: var(--radius);
  font-size: .875rem; box-shadow: 0 8px 24px rgba(0,45,114,.35);
  transform: translateX(120%); transition: transform .3s ease;
  max-width: 380px; border-left: 4px solid var(--white);
}
.toast.show { transform: translateX(0); }
.toast-success { background: var(--success); border-left-color: rgba(255,255,255,.5); }
.toast-error   { background: var(--danger); border-left-color: rgba(255,255,255,.5); }
.toast-info    { background: var(--accent); border-left-color: rgba(255,255,255,.5); }
.toast-warning { background: var(--warning); border-left-color: rgba(255,255,255,.5); }

/* ===================== LOGIN ===================== */
.login-body {
  display: flex; min-height: 100vh; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--primary) 0%, #003f9e 55%, #0057B7 100%);
  position: relative; overflow: hidden;
}
.login-body::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.login-container {
  background: var(--white); border-radius: 16px; padding: 44px 40px;
  width: 100%; max-width: 420px;
  box-shadow: 0 24px 60px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.05);
  text-align: center; position: relative;
}
.login-logo {
  width: 64px; height: 64px; background: var(--primary); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--white);
  box-shadow: 0 8px 24px rgba(0,45,114,.35);
}
.login-container h1 { font-size: 1.45rem; font-weight: 800; color: var(--primary); margin-bottom: 4px; letter-spacing: -.02em; }
.login-subtitle { color: var(--gray-500); font-size: .875rem; margin-bottom: 32px; }
.login-form { text-align: left; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: .8rem; font-weight: 700; color: var(--gray-700); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .04em; }
.form-group input {
  width: 100%; padding: 11px 14px; border-radius: var(--radius);
  border: 1.5px solid var(--gray-300); font-size: .9rem; outline: none;
  transition: border .15s, box-shadow .15s;
}
.form-group input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.login-hint { font-size: .75rem; color: var(--gray-400); margin-top: 20px; line-height: 1.7; }

/* ===================== EMPTY STATE ===================== */
.empty-state { text-align: center; padding: 80px 24px; color: var(--gray-400); }
.empty-state svg { margin-bottom: 20px; opacity: .4; }
.empty-state h2 { font-size: 1.25rem; font-weight: 600; color: var(--gray-700); margin-bottom: 8px; }
.empty-state p { color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; }

/* ===================== CARDS (config) ===================== */
.config-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 20px; }
.card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--gray-200); }
.card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; border-bottom: 1px solid var(--gray-100);
  background: var(--primary-xlight);
}
.card-header h3 { font-size: .95rem; font-weight: 700; color: var(--primary); }
.card-body { padding: 20px; }
.config-list { padding-left: 16px; line-height: 2; color: var(--gray-600); font-size: .85rem; }
.impressoras-lista { margin-top: 12px; font-size: .85rem; }
.impressoras-lista ul { padding-left: 16px; margin-top: 4px; line-height: 1.9; }

/* ===================== FORM INLINE ===================== */
.form-inline { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.form-input { padding: 8px 12px; border-radius: var(--radius); border: 1.5px solid var(--gray-300); font-size: .875rem; outline: none; transition: border .15s; }
.form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
.mb-3 { margin-bottom: 12px; }
.text-muted { color: var(--gray-500); font-size: .85rem; }
.loading { text-align: center; padding: 32px; color: var(--gray-400); }

/* ===================== SYNC STATUS (botão Atualizar) ===================== */
.sync-status-wrap { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; }
.sync-info { font-size: .72rem; color: var(--gray-400); white-space: nowrap; }
.sync-ok  { color: var(--success); }
.sync-err { color: var(--danger); }

/* ===================== MODAL TABS ===================== */
.modal-lg { max-width: 820px !important; }
.modal-tabs { display: flex; gap: 2px; padding: 0 20px; border-bottom: 1px solid var(--gray-200); background: var(--gray-50); }
.modal-tab {
  padding: 10px 16px; font-size: .83rem; font-weight: 600;
  background: none; border: none; cursor: pointer;
  color: var(--gray-500); border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.modal-tab:hover { color: var(--primary); }
.modal-tab.active { color: var(--primary); border-bottom-color: var(--primary); }
.modal-aba { display: none; }
.modal-aba.active { display: block; }

/* ===================== FORM EDIÇÃO COMPLETA ===================== */
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-row-cep { display: grid; grid-template-columns: 160px 1fr 100px; gap: 12px; align-items: end; margin-bottom: 12px; }
.cep-input-wrap { display: flex; gap: 6px; }
.cep-input-wrap .form-input { flex: 1; }
.form-group { display: flex; flex-direction: column; gap: 4px; }
.form-group label { font-size: .72rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: .04em; }
.form-group .form-input { width: 100%; }

/* ===================== ANIMATION SPIN ===================== */
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
