/* =========================================================
   AUTH.CSS — Versión final perfeccionada
   Login idéntico al original, sin recuadro oscuro
   ========================================================= */


/* ==========================================
   CONTENEDOR PRINCIPAL
========================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 110px;     /* antes 200px — ahora más arriba */
  padding-bottom: 120px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}


/* ==========================================
   TÍTULO "Acceso"
========================================== */
.hero-title {
  font-family: var(--heading-font-family);
  font-size: 40px;         /* MÁS GRANDE */
  font-weight: 700;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 35px;
  text-align: center;
}


/* ==========================================
   INPUTS
========================================== */
.custom-form .form-control {
  width: 100%;
  background-color: #ffffff;
  border-radius: 50px;
  padding: 18px 25px;       /* MÁS GRANDE */
  font-size: 20px;          /* MÁS GRANDE */
  height: 60px;             
  border: 2px solid transparent;
  transition: 0.25s;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 12px rgba(224,122,95,0.5);
}

.form-floating > label {
  padding-left: 25px !important;
  font-size: 16px;
  opacity: 0.9;
}


/* ==========================================
   LINK "¿Olvidaste la contraseña?"
========================================== */
.hero-section a {
  color: var(--secondary-color);
  font-size: 18px;          /* MÁS GRANDE */
}

.hero-section a:hover {
  color: var(--link-hover-color);
}


/* ==========================================
   BOTÓN PRINCIPAL (ACCESO)
========================================== */
.login-form button[type="button"] {
  background: #E07A5F;                        /* NARANJA ORIGINAL */
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 20px;                            /* MÁS GRANDE */
  font-weight: bold;
  padding: 14px 35px;
  width: 100%;
  transition: 0.3s;
}

.login-form button[type="button"]:hover {
  background: #F2CC8F;                        /* AMARILLO */
  color: black;
}


/* ==========================================
   BOTÓN SECUNDARIO (REGISTRARSE)
========================================== */
.custom-border-btn {
  border: 2px solid #F2CC8F !important;
  color: #F2CC8F !important;
  border-radius: 50px;
  padding: 14px 35px;
  font-size: 20px;                            /* MÁS GRANDE */
  width: 100%;
  display: inline-block;
  text-align: center;
  transition: 0.3s;
}

.custom-border-btn:hover {
  background: #F2CC8F;
  color: black;
}


/* ==========================================
   ERROR LOGIN
========================================== */
.form-error span {
  text-align: center;
  color: #ff6b6b;
  font-size: 18px;
  font-weight: bold;
  display: none;
  margin-bottom: 12px;
}


/* ==========================================
   VIDEO DE FONDO
========================================== */
.video-wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
}

.custom-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: fixed;
  top: 0;
  left: 0;
}


/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 991px) {

  .hero-title {
    font-size: 38px;
  }

  .custom-form .form-control {
    padding: 16px 20px;
    font-size: 18px;
  }

  .login-form button[type="button"],
  .custom-border-btn {
    font-size: 18px;
    padding: 12px 30px;
  }
}
