/* Fondo */
body {
    
    z-index: 0;
    position: relative;
    
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  user-select: none;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  color: #f3f4f6; /* texto claro */
  background-color: #0f172a; /* fallback si no carga el video */
}


.bg-img {
  position: fixed; /* Estará fijo al fondo */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url('http://unsplash.it/1200x800') center center no-repeat;
  background-size: cover;
  z-index: -1; /* Detrás de todo */
}

.bg-img:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
background-image: linear-gradient(to bottom right, #003973, #2F80ED);
  opacity: 0.6;
}



/* Contenedor del formulario */
.recover-container {
  background: rgba(31, 41, 55, 0.75); /* fondo oscuro semitransparente */
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  max-width: 400px;
  width: 100%;
  color: #f3f4f6;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Título */
.recover-title {
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 1.5rem;
  color: #60a5fa; /* celeste claro */
  font-weight: 700;
}

/* Etiquetas */
label {
  display: block;
  margin-bottom: 0.5rem;
  color: #d1d5db;
  font-weight: 500;
}

/* Input + icono */
.input-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.input-container input {
  width: 100%;
  padding: 1rem;
  padding-left: 2.5rem;
  border: 1px solid #374151;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  background-color: #111827;
  color: #f3f4f6;
}

.input-container input::placeholder {
  color: #9ca3af;
}

/* Icono dentro del input */
.input-icon {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: grid;
  place-items: center;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  color: #60a5fa; /* celeste */
}

/* Botón */
.submit-btn {
  width: 100%;
  padding: 0.75rem;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background-color: #2563eb;
}
