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

* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html, body { margin: 0; padding: 0; }
body {
  background: #160C33;
  color: #ECE7F7;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  min-height: 100vh;
}

/* Pantalla de carga */
.boot {
  position: fixed; inset: 0; display: flex; align-items: center; justify-content: center;
  color: #A99FC4; font-size: 14px; z-index: 1;
}

/* Login */
.login-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px;
}
.login-card {
  width: 100%; max-width: 340px;
  background: #1E1147; border: 1px solid #3A2A63; border-radius: 18px;
  padding: 34px 26px 28px; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.login-logo { margin-bottom: 4px; }
.login-brand {
  font-weight: 700; letter-spacing: 3px; font-size: 20px; color: #E0A92E; line-height: 1;
}
.login-sub {
  color: #A99FC4; font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 10px;
}
.login-card input {
  width: 100%; background: #281556; border: 1px solid #3A2A63; border-radius: 10px;
  color: #ECE7F7; padding: 12px 14px; font-size: 15px; font-family: inherit;
}
.login-card input:focus { outline: 2px solid #E0A92E; outline-offset: 1px; }
.login-card button {
  width: 100%; background: #E0A92E; color: #160C33; border: none; border-radius: 10px;
  padding: 12px; font-weight: 700; font-size: 15px; cursor: pointer; font-family: inherit;
}
.login-card button:active { transform: scale(0.99); }
.login-err { color: #E5476F; font-size: 13px; }
