body {
  margin: 0;
  padding: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;  /* Aquí aplicamos la fuente */
  background: url("../img/FondoOrg1.1.jpg") no-repeat center center fixed;
  background-size: cover;
}

/* Caja transparente estilo vidrio */
.form-side {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 3rem 3.5rem;
  border-radius: 20px;
  background: rgba(0,0,0,0.2);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: #fff;
  max-width: 800px;
  width: 90%;
}

/* Logo */
.form-logo {
  width: 200px;
  margin-right: 50px;
  margin-top: -180px;
}

/* Contenido del formulario */
.form-content {
  flex: 1;
}

/* Encabezado */
.form-content h2 {
  text-align: left;
  margin-bottom: 1.8rem;
  font-size: 2rem;
  font-weight: 600; /* Poppins medium/bold */
}

/* Inputs transparentes redondeados */
.input-group-text {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border: none;
  border-radius: 12px 0 0 12px;
  padding: 0.75rem;
}

.form-control {
  background: rgba(255,255,255,0.05);
  border: none;
  border-radius: 0 12px 12px 0;
  color: #fff;
  font-size: 1.1rem;
  padding: 0.75rem;
  font-family: 'Poppins', sans-serif;
}

.form-control:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(0,123,255,0.5);
  background: rgba(255,255,255,0.25);
}

/* Placeholder */
.form-control::placeholder { 
  color: rgba(255,255,255,0.7); 
  font-family: 'Poppins', sans-serif;
}

/* Botón */
.btn-primary {
  width: 100%;
  padding: 0.9rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  background: linear-gradient(90deg, #02254bff, #02254bff);
  transition: all 0.3s ease-in-out;
  margin-top: 1.5rem;
  font-family: 'Poppins', sans-serif;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #03488d, #02254b);
  transform: scale(1.05);
}

/* Alertas */
.alert {
  background-color: rgba(255,0,0,0.7);
  border: none;
  color: white;
  margin-top: 1rem;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
}