* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style-type: none;
  border: none;
  outline: none;
  font-family: Poppins, sans-serif;
  color: #fff;
}

/* ===== BODY ===== */
/* body {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("./hero-bg.webp"); 
  background-image: 
    linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.85)),
    url("./hero-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px; /* 🔥 evita que se pegue en mobile 
} */

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

  background-image:
    /* 🌈 Aurora animada (transparente) */
    linear-gradient(
      270deg,
      rgba(124, 255, 103, 0.35),
      rgba(177, 158, 239, 0.35),
      rgba(82, 39, 255, 0.35)
    ),
    /* 🌑 Overlay oscuro */
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.85)
    ),
    /* 🖼 Imagen base */
    url("./hero-bg.webp");

  background-size: 600% 600%, cover, cover;
  background-position: 0% 50%, center, center;
  background-repeat: no-repeat;

  animation: aurora 14s ease infinite;

  padding: 20px; /* 🔥 evita que se pegue en mobile */
}

/* ✨ Animación aurora */
@keyframes aurora {
  0%   { background-position: 0% 50%, center, center; }
  50%  { background-position: 100% 50%, center, center; }
  100% { background-position: 0% 50%, center, center; }
}


/* ===== CONTENEDOR ===== */
.content {
  width: 100%;
  max-width: 400px; /* 🔥 responsive */
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(13px);
  padding: 30px 35px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* ===== TITULO ===== */
.content h2 {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
}

/* ===== INPUTS ===== */
.content .input-box {
  position: relative;
  width: 100%;
  height: 55px;
  margin: 25px 0;
}

.content .input-box input {
  background: transparent;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 20px 45px 20px 20px;
  font-size: 16px;
}

input::placeholder {
  color: #fff;
}

/* ICONOS */
.input-box i {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  font-size: 18px;
}

/* ===== RECORDAR ===== */
.content .remember {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0 20px; /* 🔥 corregido */
  font-size: 14px;
}

.remember label {
  display: flex;
  align-items: center;
}

.remember label input {
  accent-color: #fff;
  margin-right: 6px;
}

/* ===== BOTÓN ===== */
.btnn {
  background: #fff;
  color: #0a2862;
  width: 100%;
  border-radius: 30px;
  font-size: 16px;
  height: 45px;
  font-weight: 600;
  cursor: pointer;
  margin: 10px 0 25px;
}

/* ===== LOGIN SOCIAL ===== */
.button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.button a {
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.button a i {
  font-size: 20px;
  margin-right: 8px;
}

/* ===== CHECKBOX ===== */
input[type="checkbox"] {
  width: 15px;
  height: 15px;
  cursor: pointer;
}

/* ===== OCULTAR ICONOS NAVEGADOR ===== */
input::-ms-reveal,
input::-ms-clear {
  display: none;
}

input::-webkit-credentials-auto-fill-button,
input::-webkit-clear-button,
input::-webkit-inner-spin-button,
input::-webkit-contacts-auto-fill-button {
  display: none !important;
}

/* ==========================
   📱 MOBILE
========================== */
@media (max-width: 480px) {
  .content {
    padding: 20px;
  }

  .content h2 {
    font-size: 28px;
  }

  .content .input-box {
    height: 50px;
    margin: 20px 0;
  }

  .btnn {
    height: 42px;
    font-size: 15px;
  }
}

/* ==========================
   📲 TABLET
========================== */
@media (min-width: 481px) and (max-width: 768px) {
  .content {
    max-width: 420px;
  }
}






/* TIENDA */

.version-link {
  position: fixed;
  bottom: 16px;
  right: 16px;

  /* Tamaño compacto */
  padding: 6px 12px;
  font-size: 13px;
  font-family: Poppins, sans-serif;
  white-space: nowrap;
  width: fit-content;

  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  z-index: 1000;

  /* Glassmorphism */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);

  /* Suavidad */
  opacity: 0.9;
  transition: background 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}

.version-link i {
  font-size: 17px;     /* tamaño SOLO del icono */
  margin-right: 4px;  /* espacio entre icono y texto */
  line-height: 1;
}

/* Hover escritorio */
.version-link:hover {
  opacity: 1;
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
}

/* Responsive: centro inferior */
@media (max-width: 768px) {
  .version-link {
    left: 50%;
    right: auto;
    bottom: 12px;
    transform: translateX(-50%);
    font-size: 12px;
    padding: 5px 10px;
  }

  .version-link:hover {
    transform: translateX(-50%);
  }
}
