/* login.css — Econiq.ai login page */

body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 16px;
  padding: 2.5rem;
  width: 420px;
  max-width: 95vw;
}

/* ── LOGO ──────────────────────────────────── */
.logo-wrap {
  text-align: center;
  margin-bottom: 2rem;
}
.logo-wrap img {
  width: 220px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.logo-tagline {
  font-size: .78rem;
  color: #475569;
  margin-top: .6rem;
  letter-spacing: .04em;
}

/* ── FORM ──────────────────────────────────── */
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: .82rem;
  color: #94a3b8;
  margin-bottom: .5rem;
  font-weight: 500;
}
.form-group input {
  width: 100%;
  background: #0d1117;
  border: 1px solid #30363d;
  color: #e2e8f0;
  padding: .7rem 1rem;
  border-radius: 10px;
  font-size: .9rem;
  font-family: monospace;
  transition: border-color .15s;
}
.form-group input:focus { outline: none; border-color: #0ea5e9; }

/* ── BUTTON ────────────────────────────────── */
.btn {
  width: 100%;
  padding: .8rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: .95rem;
  font-weight: 600;
  transition: opacity .15s;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: #fff;
  margin-top: .5rem;
  letter-spacing: .02em;
}
.btn:hover   { opacity: .9; }
.btn:disabled{ background: #334155; color: #64748b; cursor: not-allowed; }

/* ── ERROR / LOADING ───────────────────────── */
.error {
  background: #7f1d1d22;
  border: 1px solid #7f1d1d44;
  color: #f87171;
  padding: .7rem 1rem;
  border-radius: 8px;
  font-size: .83rem;
  margin-bottom: 1rem;
  display: none;
}
.loading { display: none; text-align: center; color: #64748b; font-size: .85rem; margin-top: .8rem; }

/* ── FEATURES ──────────────────────────────── */
.features {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #1e293b;
}
.feature {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  margin-bottom: .9rem;
}
.feature-icon { font-size: 1rem; flex-shrink: 0; margin-top: .1rem; }
.feature-text { font-size: .8rem; color: #64748b; line-height: 1.5; }
.feature-text strong { color: #94a3b8; }

/* ── HINT ──────────────────────────────────── */
.hint {
  font-size: .78rem;
  color: #475569;
  text-align: center;
  margin-top: 1.2rem;
  line-height: 1.5;
}
.hint a { color: #0ea5e9; text-decoration: none; }
.hint a:hover { text-decoration: underline; }
