@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

/* Reset y fuente */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

/* Fondo con imagen y efecto */
.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../../views/img/logos/login.jpg') no-repeat center center fixed;
  background-size: cover;
  z-index: -1;
  filter: brightness(1.1) saturate(1.3) contrast(1.05);
  opacity: 0.85;
}

/* Contenedor principal */
body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0a0a0a;
  color: #e0f7ff;
}

/* Tarjeta del formulario */
.recuperar-container {
  max-width: 460px;
  width: 100%;
  background-color: rgba(10, 10, 25, 0.94);
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 225, 255, 0.4),
              0 0 55px rgba(0, 195, 255, 0.3),
              0 0 80px rgba(0, 255, 255, 0.2);
  padding: 40px;
  border: 2px solid #00cfff;
  backdrop-filter: blur(10px);
  text-align: center;
}

/* Título */
.recuperar-container h3 {
  color: #00d9ff;
  font-weight: 700;
  margin-bottom: 25px;
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.5);
}

/* Inputs */
.form-control {
  border: 2px solid #00cfff;
  background-color: #ffffff;
  color: #0a0a0a;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  width: 100%;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0, 195, 255, 0.2);
}

.form-control:focus {
  border-color: #00eaff;
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.5);
}

/* Botón */
.btn-primary {
  background: #00bfff;
  color: white;
  border: none;
  font-size: 17px;
  padding: 13px;
  border-radius: 25px;
  width: 100%;
  transition: all 0.3s ease;
  font-weight: 600;
  box-shadow: 0 0 18px rgba(0, 255, 255, 0.4);
}

.btn-primary:hover {
  background: #009dff;
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.6);
}

/* Botón Volver */
.btn-volver {
  display: inline-block;
  margin-top: 20px;
  color: #00cfff;
  border: 1.5px solid #00cfff;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-volver:hover {
  background-color: #00cfff;
  color: #fff;
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.4);
}

/* Alerta */
.alert {
  font-size: 14px;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 8px;
  text-align: center;
  background-color: #e0f7ff;
  color: #004d66;
  border: 1.5px solid #00cfff;
  box-shadow: 0 0 14px rgba(0, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 576px) {
  .recuperar-container {
    padding: 25px;
  }
}
