*{
    margin:0;
    padding:0;
    box-sizing:border-box;
  }
  
  :root{
    --black:#050505;
    --white:#ffffff;
    --text:#d6d6d6;
    --green:#c6ff1a;
    --green-soft:rgba(198,255,26,.12);
    --green-border:rgba(198,255,26,.32);
    --border:rgba(255,255,255,.12);
    --glass:rgba(5,5,5,.70);
  }
  
  html,
  body{
    width:100%;
    min-height:100%;
    font-family:'Montserrat', sans-serif;
    background:#000;
    color:var(--white);
  }
  
  /* ================= LOGIN PAGE ================= */
  
  .login-page,
  .login-hero{
    min-height:100vh;
    padding:120px 20px 80px;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    background: url("../img/IMC/bodylife_pesas.png") no-repeat center center;
    background-size: cover;
}
  
 
  
  .login-overlay{
    position:absolute;
    inset:0;
    z-index:1;
    background:rgba(0,0,0,.18);
    pointer-events:none;
  }
  
  .login-green-glow{
    position:absolute;
    width:430px;
    height:430px;
    left:-150px;
    top:180px;
    z-index:1;
    border-radius:50%;
    background:rgba(198,255,26,.16);
    filter:blur(100px);
    pointer-events:none;
  }
  
  .login-center-wrap{
    position:relative;
    z-index:3;
    width:100%;
    min-height:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
  }
  
  /* ================= CARD ================= */
  
  .login-card{
    width:100%;
    max-width:600px;
    margin:0 auto;
  
    background: rgba(5,5,5,0.85); /* más oscuro y limpio */
    border-radius: 30px;
  
    border: 1px solid rgba(198,255,26,0.25); /* borde verde suave */
  
    backdrop-filter: blur(18px);
  
    box-shadow:
      0 0 0 1px rgba(198,255,26,0.08),
      0 10px 40px rgba(0,0,0,0.6),
      0 0 30px rgba(198,255,26,0.12); /* glow verde */
  
    padding:44px 38px;
    text-align:left;
  
    transition: all .3s ease;
  }
  .login-card:hover{
    border-color: rgba(198,255,26,0.45);
  
    box-shadow:
      0 0 0 1px rgba(198,255,26,0.15),
      0 15px 50px rgba(0,0,0,0.7),
      0 0 45px rgba(198,255,26,0.25);
  }
  .login-tag{
    display:inline-block;
    color:var(--green);
    font-size:.88rem;
    letter-spacing:2px;
    font-weight:900;
    margin-bottom:18px;
  }
  
  .login-card h1{
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.1;
    font-weight:900;
    margin-bottom:16px;
  }
  .login-subtext{
    color: #fff;
    font-weight: 600;
  
    text-shadow:
      0 0 8px rgba(198,255,26,0.35),
      0 0 18px rgba(198,255,26,0.25);
  }
  
  /* ================= ALERTAS ================= */
  
  .alert-custom{
    padding:14px 16px;
    border-radius:14px;
    margin-bottom:18px;
    font-size:.94rem;
    line-height:1.6;
    font-weight:700;
  }
  
  .alert-custom.success{
    background:rgba(198,255,26,.12);
    border:1px solid rgba(198,255,26,.30);
    color:#efffc9;
  }
  
  .alert-custom.error{
    background:rgba(255,83,83,.12);
    border:1px solid rgba(255,83,83,.30);
    color:#ffdada;
  }
  
  /* ================= FORM ================= */
  
  .login-form{
    display:flex;
    flex-direction:column;
    gap:18px;
  }
  
  .input-group{
    display:flex;
    flex-direction:column;
    gap:9px;
  }
  
  .input-group label{
    font-size:.96rem;
    font-weight:800;
    color:var(--white);
  }
  
  .input-group input{
    width:100%;
    height:60px;
    border:1px solid rgba(255,255,255,.14);
    border-radius:10px;
    background:#edf1f6;
    color:#111;
    font-size:1rem;
    padding:0 18px;
    outline:none;
    transition:.25s ease;
  }
  
  .input-group input:focus{
    border-color:rgba(198,255,26,.65);
    box-shadow:0 0 0 4px rgba(198,255,26,.14);
    transform:translateY(-1px);
  }
  
  .check-password{
    display:flex;
    align-items:center;
    gap:9px;
    color:rgba(255,255,255,.78);
    font-size:.95rem;
  }
  
  .check-password input{
    accent-color:var(--green);
  }
  
  /* ================= BOTONES ================= */
  
  .btn-login{
    width:100%;
    height:60px;
    border:1px solid rgba(198,255,26,.45);
    border-radius:18px;
    background:rgba(198,255,26,.92);
    color:#050505;
    font-size:1.05rem;
    font-weight:900;
    cursor:pointer;
    transition:.25s ease;
    margin-top:4px;
  }
  
  .btn-login:hover{
    background:rgba(198,255,26,1);
    transform:translateY(-2px);
    box-shadow:0 15px 34px rgba(198,255,26,.18);
  }
  
  .btn-register-secondary{
    width:100%;
    height:58px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:18px;
    color:var(--white);
    text-decoration:none;
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.25s ease;
    background:rgba(255,255,255,.04);
  }
  
  .btn-register-secondary:hover{
    border-color:rgba(198,255,26,.40);
    color:var(--green);
    background:rgba(198,255,26,.06);
  }
  
  /* ================= OLVIDASTE CONTRASEÑA ================= */
  
  .login-bottom-links{
    display:flex;
    justify-content:center;
    margin-top:8px;
  }
  
  .login-bottom-links a{
    color:rgba(255,255,255,.92);
    text-decoration:none;
    font-size:1.08rem;
    font-weight:800;
    transition:.25s ease;
  }
  
  .login-bottom-links a:hover{
    color:var(--green);
    text-shadow:0 0 14px rgba(198,255,26,.22);
  }
  
  /* ================= RECUPERAR PASSWORD ================= */
  
  #mensajeCoincidencia{
    display:block;
    margin-top:6px;
    font-size:14px;
    font-weight:700;
  }
  
  #mensajeCoincidencia.ok{
    color:#bfff00;
  }
  
  #mensajeCoincidencia.bad{
    color:#ff4d4d;
  }
  
  .alert-recuperacion{
    display:flex;
    gap:14px;
    align-items:flex-start;
    padding:18px 20px;
    border-radius:16px;
    margin-bottom:20px;
    backdrop-filter:blur(10px);
    color:rgba(255,255,255,.92);
    text-shadow:0 1px 3px rgba(0,0,0,.5);
  }
  
  .alert-recuperacion i{
    font-size:21px;
    margin-top:3px;
  }
  
  .alert-recuperacion.success{
    background:rgba(18,35,18,.9);
    border:1px solid rgba(191,255,0,.35);
  }
  
  .alert-recuperacion.error{
    background:rgba(45,12,12,.9);
    border:1px solid rgba(255,90,90,.45);
  }
  
  .alert-recuperacion.success i{
    color:#bfff00;
  }
  
  .alert-recuperacion.error i{
    color:#ff6b6b;
  }
  
  .alert-recuperacion strong{
    display:block;
    font-size:15px;
    margin-bottom:6px;
    color:#fff;
    font-weight:800;
  }
  
  .alert-recuperacion p{
    margin:4px 0;
    font-size:13px;
    line-height:1.5;
    color:rgba(255,255,255,.88);
  }
  
  .alert-recuperacion .legal{
    color:rgba(255,255,255,.75);
    font-size:12px;
  }
  
  .alert-recuperacion .privacidad{
    color:rgba(255,255,255,.75);
    font-size:11px;
  }
/*----------------------------------------------FOOTER.PHP-------------------------------*/

.footer-main {
  position: relative;
  overflow: hidden;

 
  background: #000000;

  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 0 1.2rem;

  box-shadow: none;

  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 0 1.2rem;
 
      box-shadow:
        inset 0 80px 120px rgba(0,255,170,0.03),
        inset 0 -80px 120px rgba(0,140,255,0.03);
    }

.footer-main::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.03), transparent 70%);

  opacity: 0.4;
  pointer-events: none;
}
.footer-main::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 60%;
  height: 1px;

  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  filter: blur(2px);
  opacity: 0.6;
}
.footer-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 10px;
  padding-right: 30px;
  box-sizing: border-box;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.footer-brand {
  display: flex;
  flex-direction: column;   /* clave */
  align-items: center;      /* centra horizontal */
  justify-content: center;
  text-align: center;       /* centra el texto */
  gap: 10px;
}
.footer-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 0;
  margin: 0;
  transform: none;
}
.footer-contact-block{
  display:flex;
  flex-direction:column;

  align-items:center;
  justify-content:center;

  text-align:center;

  transform: translateX(20px);
}
.footer-social{
  display:flex;

  justify-content:center;
  align-items:center;

  gap:0.9rem;

  width:100%;
}
.footer-contact-block h5,
.footer-phone{
  position: relative;
  left: 35px;
}

/* ================= MARCA ================= */



.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
  margin-bottom: 5px;
}

.footer-brand-text {
  min-width: 0;
  
  text-align: center;
}
.footer-brand-text h4 {
  margin: 0 0 6px;
  font-size: 1.9rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: none;
}
.footer-brand-text p {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-shadow: none;
}
/* ================= UBICACIÓN ================= */

.footer-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  margin-left: 0;
  transform: translateX(75px) !important;
}
.footer-contact-block h5 {
  color: #ffffff;

}
    .footer-info h5,
    .footer-contact-block h5 {
      font-size: 1.4rem;     /* mismo tamaño que BODY LIFE */
      font-weight: 900;
      letter-spacing: 0.8px;
      color: #ffffff;
      transform: translateX(6px); 
    }

.footer-info p {
  margin: 0 0 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  line-height: 1.7;
  word-break: break-word;
}

.footer-location {
  color: #3b82f6;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-location i {
  color: #3b82f6;
}

.footer-location:hover {
  color: #60a5fa;
}

.footer-location:hover i {
  color: #60a5fa;
}
.footer-location i {
  color: #3b82f6;
  text-shadow: 0 0 6px rgba(59,130,246,0.4);
}

/* ================= CONTACTO ================= */


.footer-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 700;
  transition: all 0.25s ease;
  flex-wrap: wrap;
  word-break: break-word;
}
.footer-phone i {
  color: #3b82f6;
  text-shadow: 0 0 6px rgba(59,130,246,0.5);
}

.footer-phone:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 10px rgba(255,255,255,0.03),
    0 6px 16px rgba(0,0,0,0.28);
  transition: all 0.28s ease;
}

.footer-social a i {
  font-size: 21px;
  transition: all 0.28s ease;
}

/* Colores sutiles por red */
.footer-social a:nth-child(1) i {
  color: #d96aa7;
}

.footer-social a:nth-child(2) i {
  color: #6ea8ff;
}

.footer-social a:nth-child(3) i {
  color: #4fd17b;
}

/* Hover elegante */
.footer-social a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    inset 0 0 12px rgba(255,255,255,0.04),
    0 10px 22px rgba(0,0,0,0.34);
}

.footer-social a:nth-child(1):hover {
  box-shadow:
    0 0 0 1px rgba(217,106,167,0.18),
    0 8px 20px rgba(217,106,167,0.14);
}

.footer-social a:nth-child(2):hover {
  box-shadow:
    0 0 0 1px rgba(110,168,255,0.18),
    0 8px 20px rgba(110,168,255,0.14);
}

.footer-social a:nth-child(3):hover {
  box-shadow:
    0 0 0 1px rgba(79,209,123,0.18),
    0 8px 20px rgba(79,209,123,0.14);
}

.footer-social a:hover i {
  transform: scale(1.06);
}

/* ================= PARTE INFERIOR ================= */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1rem;
  margin-top: 1.8rem;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  word-break: break-word;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all 0.25s ease;
}

/*  HOVER AZUL */
.footer-links a:hover {
  color: #1e90ff; /* azul tipo link */
  text-decoration: underline;
}
/* FORZAR TODO EL TEXTO DEL FOOTER A BLANCO */
.footer-brand-text h4,
.footer-brand-text p,
.footer-info h5,
.footer-info p,
.footer-contact-block h5,
.footer-phone
.footer-contact-block {
  color: #ffffff;
}
.footer-contact-block h5,
.footer-phone {
  transform: translateX(-40px); /* ajusta aquí */
}
/* FORZAR MISMO BLANCO REAL QUE UBICACIÓN */
.footer-brand-text h4,
.footer-contact-block h5,
.footer-info h5 {
color: #ffffff !important;


}
.password-help {
  display: block;
  width: 100%;
  
  font-size: 16px;
  font-weight: 500;
  
  color: rgba(255,255,255,0.9);
  
  margin-top: 6px;
  padding: 10px 14px;
  
  border-radius: 10px;
  
  background: rgba(191,255,0,0.08); /* fondo suave verde */
  border-left: 3px solid #bfff00;   /* línea elegante */
  
  text-shadow: 0 0 6px rgba(191,255,0,0.15);
}
.legal-box {
  background: rgba(10, 12, 10, 0.95); /* negro profundo */
  border: 1px solid rgba(191,255,0,0.25);
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 8px;

  box-shadow:
      0 10px 30px rgba(0,0,0,0.6),
      0 0 15px rgba(191,255,0,0.08);
}
.legal-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: rgba(255,255,255,0.95);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.legal-check input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: #bfff00;
}

.legal-box p {
  margin: 12px 0 0 32px;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.6;
}
/*----------------------------------------------AVISO LEGAL---------------------------------*/
.legal-check span {
  color: #d6d6d6;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* LINKS SIN SUBRAYADO */
.legal-check a {
  color: #c6ff1a; /* verde BODY LIFE */
  text-decoration: none; /* 👈 quitamos subrayado */
  font-weight: 700;

  transition: all 0.2s ease;
}

/* HOVER SUAVE */
.legal-check a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(198,255,26,0.5);
}

/* quitar estilos feos del navegador */
.legal-check a:visited,
.legal-check a:active {
  color: #c6ff1a;
}

.obligatorio {
  color: #ff4d4d;
  font-weight: 900;
  margin-left: 4px;
}

.campo-error {
  border: 2px solid #ff3b3b !important;
  box-shadow:
    0 0 0 4px rgba(255, 59, 59, 0.25),
    0 0 14px rgba(255, 59, 59, 0.35) !important;
}
.mensaje-error-campo {
  color: #ff4d4d;
  font-size: 13px;
  font-weight: 800;
  margin-top: 7px;
  text-align: left;
}
.campo-error:focus {
  border: 2px solid #ff3b3b !important;
  box-shadow:
    0 0 0 4px rgba(255, 59, 59, 0.25),
    0 0 14px rgba(255, 59, 59, 0.35) !important;
}

.info-obligatorio {
  margin: 10px auto 18px;
  text-align: center;

  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);

  letter-spacing: 0.3px;
}


.info-obligatorio span {
  color: rgba(255,255,255,0.35);
  font-weight: 800;
  font-size: 1.2em;

  display: inline-block; /* clave */
  transform: translateY(2px); /* baja el asterisco */
}
.footer-bottom p{
  font-size:1.08rem;
  font-weight:600;

  color:rgba(255,255,255,.9);

  letter-spacing:.3px;

  text-shadow:
    0 0 10px rgba(255,255,255,.08);
}

.footer-links a{
  font-size:1.05rem;
  font-weight:700;

  color:rgba(255,255,255,.92);

  transition:.25s ease;
}

.footer-links a:hover{

  color:#b8ff2c;

  text-shadow:
    0 0 10px rgba(184,255,44,.35);
}
.footer-main .footer-top .footer-info{
  position: relative;
  left: 28px;
}
  .menu-ayuda{
      position:fixed;
      top:92px;
      left:360px;
      z-index:10001;
      width:330px;
      padding:18px 20px;
      border-radius:18px;
      background:rgba(8,12,10,.94);
      border:1px solid rgba(184,255,31,.45);
      box-shadow:
          0 0 22px rgba(184,255,31,.25),
          0 18px 40px rgba(0,0,0,.55);
      color:#fff;
      animation: aparecerAyuda .6s ease forwards;
  }
  
  .menu-ayuda::before{
      content:"";
      position:absolute;
      top:-10px;
      left:42px;
      width:18px;
      height:18px;
      background:rgba(8,12,10,.94);
      border-left:1px solid rgba(184,255,31,.45);
      border-top:1px solid rgba(184,255,31,.45);
      transform:rotate(45deg);
  }
  
  #menuAyuda strong{
      display:block;
      font-size:1.15rem;
      font-weight:800;
      letter-spacing:.5px;
  
      color:#d9ff8c; /* verde más fino, no chillón */
  
      margin-bottom:10px;
  
      text-shadow:
          0 0 6px rgba(184,255,31,.25),
          0 2px 8px rgba(0,0,0,.6);
  }
  
  #menuAyuda p{
      font-size:0.95rem;
      line-height:1.7;
  
      color:rgba(255,255,255,.78);
  
      font-weight:400;
  
      letter-spacing:.3px;
  
      text-shadow:
          0 1px 2px rgba(0,0,0,.7);
  }
  #menuAyuda strong::after{
      content:"";
      display:block;
      width:40px;
      height:2px;
      margin-top:8px;
  
      background:linear-gradient(90deg, #b8ff1f, transparent);
  
      opacity:.7;
  }
  .menu-ayuda-cerrar{
      position:absolute;
      top:8px;
      right:10px;
      border:none;
      background:transparent;
      color:#fff;
      font-size:1.3rem;
      cursor:pointer;
  }
  
  @keyframes aparecerAyuda{
      from{
          opacity:0;
          transform:translateY(-10px);
      }
      to{
          opacity:1;
          transform:translateY(0);
      }
  }

  /* ========================================================= RESPONSIVE LOGIN.CSS - BODY LIFE========================================================= */

/* Pantallas grandes */
@media (max-width: 1400px){
  .login-card{
    max-width:560px;
    padding:40px 34px;
  }

  .login-page,
  .login-hero{
    padding-top:115px;
  }
}

/* Portátiles / tablets horizontales */
@media (max-width: 1200px){
  .login-card{
    max-width:530px;
  }

  .footer-top{
    grid-template-columns:1fr 1fr 1fr;
    gap:20px;
  }

  .footer-main .footer-top .footer-info,
  .footer-info,
  .footer-contact-block,
  .footer-contact-block h5,
  .footer-phone{
    transform:none !important;
    left:auto !important;
  }
}

/* iPad Pro / tablets */
@media (max-width: 1024px){
  .login-page,
  .login-hero{
    min-height:auto;
    padding:120px 18px 70px;
    background-position:center;
  }

  .login-card{
    max-width:520px;
    padding:38px 32px;
    border-radius:26px;
  }

  .login-card h1{
    font-size:2.25rem;
  }

  .footer-top{
    grid-template-columns:1fr;
    text-align:center;
    gap:34px;
  }

  .footer-container{
    padding-left:22px;
    padding-right:22px;
  }

  .footer-brand,
  .footer-info,
  .footer-contact-block{
    align-items:center;
    text-align:center;
  }
  
}

/* iPad Air / iPad Mini / Surface */
@media (max-width: 900px){
  .login-page,
  .login-hero{
    padding:110px 16px 60px;
  }

  .login-center-wrap{
    padding:10px;
  }

  .login-card{
    max-width:500px;
    padding:34px 28px;
  }

  .input-group input,
  .btn-login,
  .btn-register-secondary{
    height:56px;
  }

  .footer-brand-text h4{
    font-size:1.6rem;
  }

  .footer-info h5,
  .footer-contact-block h5{
    font-size:1.25rem;
  }
}

/* Móviles grandes */
@media (max-width: 768px){
  .login-page,
  .login-hero{
    padding:105px 14px 55px;
    background-position:center top;
  }

  .login-overlay{
    background:rgba(0,0,0,.38);
  }

  .login-green-glow{
    width:300px;
    height:300px;
    left:-120px;
    top:150px;
    filter:blur(85px);
  }

  .login-card{
    max-width:460px;
    padding:30px 24px;
    border-radius:24px;
  }

  .login-tag{
    font-size:.75rem;
    letter-spacing:1.6px;
  }

  .login-card h1{
    font-size:2rem;
  }

  .login-subtext{
    font-size:.95rem;
    line-height:1.55;
  }

  .login-form{
    gap:15px;
  }

  .input-group label{
    font-size:.9rem;
  }

  .input-group input{
    height:54px;
    font-size:.95rem;
    padding:0 15px;
  }

  .btn-login,
  .btn-register-secondary{
    height:54px;
    border-radius:15px;
    font-size:.95rem;
  }

  .login-bottom-links a{
    font-size:.95rem;
  }

  .footer-main{
    padding:2rem 0 1rem;
  }

  .footer-social a{
    width:48px;
    height:48px;
  }

  .footer-bottom p,
  .footer-links a{
    font-size:.9rem;
  }
}

/* iPhone 14 Pro Max / Pixel / Galaxy */
@media (max-width: 480px){
  .login-page,
  .login-hero{
    padding:95px 12px 45px;
    align-items:flex-start;
  }

  .login-center-wrap{
    padding:0;
  }

  .login-card{
    max-width:100%;
    padding:26px 20px;
    border-radius:22px;
  }

  .login-card h1{
    font-size:1.75rem;
    margin-bottom:12px;
  }

  .login-subtext{
    font-size:.9rem;
    margin-bottom:18px;
  }

  .alert-custom{
    padding:12px 13px;
    font-size:.85rem;
  }

  .input-group input{
    height:52px;
    border-radius:9px;
  }

  .check-password{
    font-size:.86rem;
  }

  .btn-login,
  .btn-register-secondary{
    height:52px;
    font-size:.9rem;
  }

  .footer-logo{
    width:50px;
    height:50px;
  }

  .footer-brand-text h4{
    font-size:1.35rem;
  }

  .footer-brand-text p,
  .footer-info p,
  .footer-phone{
    font-size:.88rem;
  }

  .footer-links{
    flex-direction:column;
    gap:.55rem;
  }
}

/* iPhone SE / móviles pequeños */
@media (max-width: 390px){
  .login-page,
  .login-hero{
    padding:88px 10px 38px;
  }

  .login-card{
    padding:23px 17px;
    border-radius:20px;
  }

  .login-tag{
    font-size:.68rem;
    letter-spacing:1.3px;
    margin-bottom:12px;
  }

  .login-card h1{
    font-size:1.55rem;
  }

  .login-subtext{
    font-size:.84rem;
  }

  .input-group input{
    height:48px;
    font-size:.88rem;
  }

  .btn-login,
  .btn-register-secondary{
    height:49px;
    border-radius:13px;
    font-size:.86rem;
  }

  .login-bottom-links a{
    font-size:.85rem;
  }

  .footer-container{
    padding-left:14px;
    padding-right:14px;
  }

  .footer-social a{
    width:44px;
    height:44px;
  }

  .footer-social a i{
    font-size:18px;
  }
}

/* Galaxy Fold / pantallas muy estrechas */
@media (max-width: 330px){
  .login-card{
    padding:20px 14px;
  }

  .login-card h1{
    font-size:1.42rem;
  }

  .input-group input{
    padding:0 12px;
  }

  .footer-brand-text h4{
    font-size:1.18rem;
  }

  .footer-info p{
    font-size:.8rem;
  }
} 
/*-----------------------------------------------------------ICON CON OPCIONES ARRIBA---------------------------------*/
/* =========================================================
   MENU MOBILE PREMIUM CON BOOTSTRAP ICONS LOCAL
========================================================= */

.navbar-toggler{
  width:62px;
  height:62px;

  border-radius:18px !important;

  border:1px solid rgba(184,255,44,.45) !important;

  background:
  rgba(5,5,5,.92) !important;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:0 !important;

  box-shadow:
  0 0 18px rgba(184,255,44,.10);

  transition:.25s ease;
}

.navbar-toggler:hover{
  transform:translateY(-2px);

  border-color:
  rgba(184,255,44,.70) !important;

  box-shadow:
  0 0 24px rgba(184,255,44,.18);
}

.navbar-toggler:focus{
  box-shadow:
  0 0 0 3px rgba(184,255,44,.12) !important;
}

/* QUITAR ICONO DEFAULT */

.navbar-toggler-icon{
  background-image:none !important;

  width:auto;
  height:auto;

  display:flex;
  align-items:center;
  justify-content:center;
}

/* ICONO BOOTSTRAP */

.navbar-toggler-icon::before{
  content:"\f479"; /* bi-list */

  font-family:"bootstrap-icons";

  font-size:1.9rem;
  line-height:1;

  color:#b8ff2c;

  text-shadow:
  0 0 12px rgba(184,255,44,.35);

  transition:.25s ease;
}

/* EFECTO HOVER */

.navbar-toggler:hover .navbar-toggler-icon::before{

  transform:scale(1.05);

  text-shadow:
  0 0 18px rgba(184,255,44,.50);
}

/* MOBILE */

@media(max-width:768px){

.navbar-toggler{
  width:58px;
  height:58px;
  border-radius:16px !important;
}

.navbar-toggler-icon::before{
  font-size:1.7rem;
}

}

@media(max-width:420px){

.navbar-toggler{
  width:54px;
  height:54px;
}

.navbar-toggler-icon::before{
  font-size:1.55rem;
}

}
/* =========================================================
   LOGIN MÁS COMPACTO EN iPHONE SE
========================================================= */

@media (max-width: 380px){

  .login-page,
  .login-hero{
      padding:78px 10px 28px;
  }
  
  .login-card{
  
      max-width:320px;
  
      padding:20px 16px;
  
      border-radius:20px;
  }
  
  .login-tag{
      font-size:.62rem;
      margin-bottom:10px;
  }
  
  .login-card h1{
      font-size:1.45rem;
      line-height:1.05;
  
      margin-bottom:10px;
  }
  
  .login-subtext{
      font-size:.82rem;
  
      margin-bottom:8px;
  }
  
  .login-form{
      gap:12px;
  }
  
  .input-group{
      gap:6px;
  }
  
  .input-group label{
      font-size:.84rem;
  }
  
  .input-group input{
      height:45px;
  
      font-size:.84rem;
  
      border-radius:10px;
  
      padding:0 12px;
  }
  
  .check-password{
      font-size:.78rem;
  }
  
  .btn-login,
  .btn-register-secondary{
  
      height:46px;
  
      border-radius:12px;
  
      font-size:.84rem;
  }
  
  .login-bottom-links{
      margin-top:2px;
  }
  
  .login-bottom-links a{
      font-size:.82rem;
  }
  .footer-main{
    padding:1.2rem 0 .7rem;
}

.footer-container{
    padding-left:10px;
    padding-right:10px;
}

.footer-top{
    gap:18px;
}

.footer-logo{
    width:40px;
    height:40px;

    border-radius:10px;
}

.footer-brand{
    gap:6px;
}

.footer-brand-text h4{
    font-size:1rem;

    margin-bottom:2px;
}

.footer-brand-text p{
    font-size:.72rem;
}

.footer-info h5,
.footer-contact-block h5{
    font-size:.92rem;
}

.footer-info p{
    font-size:.72rem;

    line-height:1.45;
}

.footer-phone{
    font-size:.74rem;
}

.footer-social{
    gap:.55rem;

    margin-top:.6rem;
}

.footer-social a{
    width:38px;
    height:38px;
}

.footer-social a i{
    font-size:15px;
}

.footer-bottom{
    margin-top:1rem;

    padding-top:.7rem;

    gap:.45rem;
}

.footer-bottom p{
    font-size:.68rem;

    line-height:1.35;
}

.footer-links{
    gap:.4rem;
}

.footer-links a{
    font-size:.68rem;
}
  }
  /* =========================================================
   FORZAR FOOTER CENTRADO EN TABLET Y MOBILE
========================================================= */

@media (max-width: 1024px){

  .footer-main,
  .footer-main *{
    box-sizing:border-box;
  }

  .footer-container{
    width:100% !important;
    max-width:100% !important;
    margin:0 auto !important;
    padding-left:20px !important;
    padding-right:20px !important;
  }

  .footer-top{
    display:flex !important;
    flex-direction:column !important;
    align-items:center !important;
    justify-content:center !important;
    text-align:center !important;
    gap:32px !important;
  }

  .footer-brand,
  .footer-info,
  .footer-contact-block,
  .footer-bottom,
  .footer-author,
  .footer-author-content{
    width:100% !important;
    max-width:100% !important;
    margin-left:0 !important;
    margin-right:0 !important;
    padding-left:0 !important;
    padding-right:0 !important;
    left:0 !important;
    right:0 !important;
    transform:none !important;
    text-align:center !important;
    align-items:center !important;
    justify-content:center !important;
  }

  .footer-main .footer-top .footer-info,
  .footer-contact-block h5,
  .footer-phone{
    position:static !important;
    left:auto !important;
    transform:none !important;
  }

  .footer-social,
  .footer-links{
    width:100% !important;
    justify-content:center !important;
    align-items:center !important;
  }

  .footer-author-line{
    display:none !important;
  }
}
/* =========================================================
   ARREGLO DESARROLLADO POR - IPAD PRO
========================================================= */

@media (min-width: 900px) and (max-width: 1200px){

  .footer-bottom{
    display:flex !important;
    flex-direction:column !important;
    gap:14px !important;
    padding-bottom:24px !important;
  }

  .footer-author{
    order:1 !important;
    margin:0 auto 8px !important;
    position:static !important;
    transform:none !important;
    left:auto !important;
  }

  .footer-bottom p{
    order:2 !important;
  }

  .footer-links{
    order:3 !important;
  }

  .footer-author-content{
    transform:none !important;
    margin:0 auto !important;
  }

  .footer-author-mini,
  .footer-author-name,
  .footer-author-phone{
    display:block !important;
    line-height:1.35 !important;
  }
}
/* =========================================================
   FOOTER TOTALMENTE CENTRADO - IPAD AIR
========================================================= */

@media (min-width: 768px) and (max-width: 1024px){

  .footer-main{
    padding:2.4rem 0 1.4rem !important;
  }

  .footer-container{
    width:100% !important;

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    padding-left:24px !important;
    padding-right:24px !important;
  }

  .footer-top{
    width:100% !important;

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    gap:26px !important;
  }

  .footer-brand,
  .footer-info,
  .footer-contact-block{
    width:100% !important;

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    margin:0 auto !important;

    transform:none !important;
    left:auto !important;
    right:auto !important;
  }

  .footer-main .footer-top .footer-info,
  .footer-contact-block h5,
  .footer-phone{
    transform:none !important;
    left:auto !important;
    position:static !important;
  }

  .footer-social{
    width:100% !important;

    display:flex !important;

    justify-content:center !important;
    align-items:center !important;

    gap:14px !important;
  }

  .footer-bottom{
    width:100% !important;

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    gap:12px !important;

    margin-top:24px !important;
    padding-top:20px !important;
  }

  .footer-author{
    width:100% !important;

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    margin:0 auto !important;

    transform:none !important;
    left:auto !important;
  }

  .footer-author-content{
    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;
  }

  .footer-author-line{
    display:none !important;
  }

  .footer-links{
    width:100% !important;

    display:flex !important;
    justify-content:center !important;
    align-items:center !important;

    flex-wrap:wrap !important;

    gap:18px !important;
  }
}
/* =========================================================
   FOOTER CENTRADO TOTAL - IPAD PRO VERTICAL
========================================================= */

@media (min-width: 900px) and (max-width: 1100px){

  .footer-main{
    width:100% !important;

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;
  }

  .footer-container{
    width:100% !important;
    max-width:100% !important;

    margin:0 auto !important;

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    padding-left:24px !important;
    padding-right:24px !important;
  }

  .footer-top{
    width:100% !important;

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    gap:30px !important;
  }

  .footer-brand,
  .footer-info,
  .footer-contact-block,
  .footer-author,
  .footer-author-content,
  .footer-bottom{

    width:100% !important;

    display:flex !important;
    flex-direction:column !important;

    align-items:center !important;
    justify-content:center !important;

    text-align:center !important;

    margin:0 auto !important;

    position:static !important;

    transform:none !important;
    left:auto !important;
    right:auto !important;
  }

  .footer-main .footer-top .footer-info,
  .footer-contact-block h5,
  .footer-phone{
    position:static !important;

    left:auto !important;

    transform:none !important;
  }

  .footer-author-line{
    display:none !important;
  }

  .footer-social,
  .footer-links{

    width:100% !important;

    display:flex !important;

    justify-content:center !important;
    align-items:center !important;

    flex-wrap:wrap !important;
  }

  .footer-links{
    gap:16px !important;
  }

  .footer-bottom{
    gap:12px !important;

    margin-top:22px !important;
    padding-top:20px !important;
  }

  .footer-bottom p{
    text-align:center !important;

    margin:0 !important;
  }
}

/*---------------------------------------------DESARROLLADORA----------------------------------------*/

.footer-author-mini {
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .32em;
  color: rgba(255,255,255,.35);
}

.footer-author-name {
  font-size: .85rem;
  font-weight: 800;
  color: rgba(255,255,255,.35);
}
.footer-author-phone {
  font-size: .82rem;

  color: rgba(255,255,255,.35);
  text-decoration: none;

  text-shadow:
    0 0 8px rgba(255,255,255,.04);
}