/* =======================
   RESET BÁSICO
======================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* =======================
   LOGIN / REGISTER PAGE
======================= */

.auth-page {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: radial-gradient(circle at top, #0f172a 0%, #020617 60%);
  color: #e5e7eb;
}

/* =======================
   CONTENEDOR
======================= */

.auth-container {
  width: 360px;
  padding: 36px 40px;
  background: #020617;
  border-radius: 14px;
  border: 1px solid #1f2937;
  box-shadow: 0 0 45px rgba(0, 255, 153, 0.15);
  text-align: center;
}

/* =======================
   LOGO
======================= */

.logo {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
}

.white {
  color: #ffffff;
}

.green {
  color: #00ff99;
}

/* =======================
   FORMULARIO
======================= */

.auth-form h2 {
  font-size: 17px;
  margin-bottom: 22px;
  opacity: 0.85;
  font-weight: 500;
}

/* =======================
   INPUTS
======================= */

.input-group {
  text-align: left;
  margin-bottom: 16px;
}

.input-group label {
  font-size: 12.5px;
  opacity: 0.8;
  margin-bottom: 6px;
  display: block;
}

.input-group input {
  width: 100%;
  height: 38px;             /* CLAVE: tamaño correcto */
  padding: 0 12px;
  font-size: 14px;
  background: #0b1220;
  color: #e5e7eb;
  border-radius: 8px;
  border: 1px solid #1f2937;
}

.input-group input::placeholder {
  color: #9ca3af;
}

.input-group input:focus {
  outline: none;
  border-color: #00ff99;
  box-shadow: 0 0 0 1px rgba(0,255,153,0.4);
}

/* =======================
   BOTÓN
======================= */

.auth-form button {
  width: 100%;
  height: 40px;
  margin-top: 10px;
  background: #00ff99;
  color: #020617;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.auth-form button:hover {
  background: #00cc7a;
}

/* =======================
   LINK REGISTER
======================= */

.auth-link {
  margin-top: 16px;
  font-size: 13px;
  opacity: 0.9;
}

.auth-link a {
  color: #00ff99;
  text-decoration: none;
}

.auth-link a:hover {
  text-decoration: underline;
}
