/* Tech Antigua · estilos compartidos registro/admin */
:root {
  --paper: #0a1626;
  --paper-soft: #0e1d33;
  --panel: #10203a;
  --panel-2: #0d1b30;
  --ink: #eef4fb;
  --ink-soft: #aebccf;
  --muted: #6f8095;
  --line: rgba(47, 217, 192, 0.16);
  --line-soft: rgba(174, 188, 207, 0.12);
  --cosmic: #050b15;
  --teal: #2fd9c0;
  --teal-glow: #66ecd8;
  --teal-dim: #1c9d8b;
  --blue: #2f8fff;
  --amber: #e8b84b;
  --rose: #ff6b6b;
  --green: #37d67a;
  --display: "Montserrat", system-ui, sans-serif;
  --sans: "Geist", system-ui, sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;
}
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--paper); color: var(--ink); }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(90% 60% at 50% -10%, rgba(47, 217, 192, 0.08) 0%, transparent 55%),
    var(--paper);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
img { display: block; max-width: 100%; }
.mono { font-family: var(--mono); letter-spacing: 0.08em; text-transform: uppercase; }
.micro {
  font-family: var(--mono); font-size: 0.66rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted);
}

/* ── logo lockup ── */
.brandbar { display: flex; align-items: center; gap: 14px; }
.brandbar img { height: 44px; width: auto; }

/* ── shell ── */
.wrap { width: 100%; max-width: 620px; margin: 0 auto; padding: 32px 22px 80px; }
.wrap-wide { max-width: 1180px; }

/* ── card ── */
.card {
  background: linear-gradient(160deg, rgba(20, 42, 62, 0.72) 0%, rgba(10, 22, 38, 0.72) 100%);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px;
}

/* ── form ── */
.field { margin-bottom: 20px; }
.field label {
  display: block; font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 9px;
}
.field input, .field select {
  width: 100%; padding: 14px 16px; border-radius: 12px;
  background: rgba(5, 11, 21, 0.6); color: var(--ink);
  border: 1px solid var(--line-soft); font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input::placeholder { color: var(--muted); }
.field input:focus, .field select:focus {
  outline: none; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(47, 217, 192, 0.16);
}
.field select { appearance: none; background-image:
  url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236f8095' stroke-width='2.4' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; font-weight: 600;
  font-family: var(--display); letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn-primary {
  background: linear-gradient(100deg, var(--teal-dim) 0%, var(--teal) 60%, var(--teal-glow) 100%);
  color: var(--cosmic); box-shadow: 0 16px 40px -18px rgba(47, 217, 192, 0.6);
  width: 100%;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 22px 48px -18px rgba(47, 217, 192, 0.8); }
.btn-ghost { border: 1px solid var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }

/* ── estado pills ── */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 12px; border-radius: 999px; font-family: var(--mono);
  font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
}
.pill::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.pill.Pendiente { color: var(--amber); background: rgba(232, 184, 75, 0.12); }
.pill.Confirmado { color: var(--green); background: rgba(55, 214, 122, 0.12); }
.pill.Rechazado { color: var(--rose); background: rgba(255, 107, 107, 0.12); }

/* ── dropzone comprobante ── */
.drop {
  display: block; margin-top: 16px; cursor: pointer;
  border: 1.5px dashed var(--line); border-radius: 12px;
  background: rgba(47, 217, 192, 0.04); transition: border-color 0.2s ease, background 0.2s ease;
}
.drop:hover { border-color: var(--teal); background: rgba(47, 217, 192, 0.07); }
.drop.has-file { border-style: solid; border-color: var(--teal); }
.drop-inner {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 22px 16px; text-align: center; color: var(--ink-soft);
}
.drop-label { font-weight: 600; font-family: var(--display); font-size: 0.95rem; color: var(--ink); }
.drop-hint { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.drop-inner > svg { color: var(--teal); }
.drop-thumb { height: 66px; width: auto; border-radius: 8px; border: 1px solid var(--line-soft); margin-bottom: 2px; }
