/* Fondo general */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

/* Caja del login */
.login-box {
  max-width: 420px;
  margin: 60px auto;
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: center;
}

/* Logo */
.login-box img.logo {
  display: block;
  margin: 0 auto 25px;
  max-width: 320px; /* Logo grande */
}

/* Etiquetas */
.login-box label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  text-align: center;
  color: #333;
}

/* Inputs */
.login-box input {
  width: 85%;
  margin: 8px auto;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  display: block;
  font-size: 14px;
  text-align: center; /* Texto centrado dentro del input */
}

/* Botón rojo corporativo */
.login-box button,
.btn-red {
  margin-top: 20px;
  width: 85%;
  padding: 12px;
  background: #d32f2f; /* Rojo corporativo */
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 15px;
}

.login-box button:hover,
.btn-red:hover {
  background: #b71c1c; /* Rojo más oscuro al pasar el mouse */
}

/* Botón estilo Santander */
.btn-santander {
  width: auto;
  min-width: 145px;
  background-color: #ec0000;
  border: 1px solid #ec0000;
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 30px;
  cursor: pointer;
  display: inline-block;
  margin: 20px auto;
  transition: 0.4s all ease;
}

.btn-santander:hover {
  background-color: #b30000;
  border-color: #b30000;
}

.btn-santander .bg-arrow {
  display: inline-block;
  margin-left: 8px;
  width: 0; 
  height: 0; 
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 8px solid #fff;
}

/* Texto secundario */
.sub-text {
  margin-top: 10px;
  font-size: 12px;
  color: #333;
  text-align: center;
}

/* Opciones adicionales */
.options {
  margin-top: 15px;
  font-size: 13px;
  color: #555;
  text-align: center;
}
.options a {
  color: #0070c9;
  text-decoration: none;
}
.options a:hover {
  text-decoration: underline;
}

/* Títulos */
h1, h2 {
  font-size: 18px;
  margin-bottom: 15px;
  text-align: center;
}

/* Productos */
.producto {
  margin: 15px 0;
  text-align: center; /* centrado como los demás formularios */
  font-size: 14px;
}

/* Caja de productos */
.productos-box {
  max-width: 420px;
  margin: 40px auto;
  padding: 25px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: center;
}

/* Spinner */
.spinner {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #d32f2f; /* Rojo corporativo */
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
  margin: 20px auto;
}
@keyframes spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

/* Ocultar elementos */
.hidden { display:none; }

/* ✅ Media queries para móviles */
@media (max-width: 480px) {
  .login-box,
  .productos-box {
    max-width: 95%;
    padding: 15px;
  }
  h1, h2 {
    font-size: 16px;
  }
  .producto {
    font-size: 13px;
  }
  .btn-santander {
    min-width: 120px;
    font-size: 13px;
    padding: 6px 10px;
  }
}
