/* =========================
   LOGIN | CX3C STORE
========================= */

* {
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #0f172a, #020617);
  color: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTENEDOR GENERAL */
.login-wrap {
  width: 100%;
  max-width: 420px;
  padding: 20px;
}

/* HEADER */
.login-header {
  text-align: center;
  margin-bottom: 20px;
}

.login-header h1 {
  margin: 0;
  font-size: 28px;
  color: #ffffff;
}

.login-header p {
  margin-top: 6px;
  font-size: 14px;
  color: #94a3b8;
}

/* CARD */
.login-card {
  background: #020617;
  border: 1px solid #1e293b;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
}

/* LABELS */
.login-card label {
  display: block;
  margin-bottom: 16px;
  font-size: 14px;
  color: #cbd5f5;
}

/* INPUTS */
.login-card input {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #334155;
  background: #020617;
  color: #fff;
  font-size: 15px;
  outline: none;
  transition: border .2s, box-shadow .2s;
}

.login-card input:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 2px rgba(56,189,248,.25);
}

/* BOTÓN PRINCIPAL */
.btn-primary {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(56,189,248,.35);
}

/* MENSAJE */
.login-msg {
  margin-top: 12px;
  font-size: 14px;
  min-height: 18px;
}

.login-msg.error {
  color: #f87171;
}

.login-msg.success {
  color: #4ade80;
}

/* FOOTER */
.login-footer {
  margin-top: 16px;
  text-align: center;
}

/* BOTÓN GHOST */
.btn-ghost {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid #334155;
  color: #cbd5f5;
  text-decoration: none;
  font-size: 14px;
  transition: background .2s, border .2s;
}

.btn-ghost:hover {
  background: #020617;
  border-color: #38bdf8;
}
