body{
    font-family: 'Poppins', sans-serif;
    background-color: #020202;
    color: #FEFEFE;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* .hero{
    background-image: url(imagen/login.jpg);
    height: 100vh;
    mask-repeat: no-repeat;
} */

.hero{
  background-image: url("../imagen/login.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Para efecto tipo parallax */
  background-position: center;
  min-height: 100vh;
  animation: moverBackground 15s ease-in-out infinite alternate;
}

@keyframes moverBackground {
  0% {
    background-position: center top;
  }
  100% {
    background-position: center bottom;
  }
}



.bg-footer{
    background-color: #002f55b6;
}
.card-login{
    background-color: #FEFEFE;
    color: #020202 ;
    background-image: url(../imagen/logoBack.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
}

.panel-az{
    background-color: #002F55;
    color: #FEFEFE;
    /* background-image: url("imagen/logoarbi.png"); */
}
.text-outline {
  color: transparent; /* Hace que el relleno sea transparente */
  -webkit-text-stroke: 1px white; /* Borde blanco al texto */  
  position: relative;
}

.text-outline::after {
  content: "";
  position: absolute;
  bottom: -5px; /* Ajusta la posición de la línea */
  left: 0;
  width: 100%;
  height: 1px; /* Grosor de la línea */
}

.input-login{
    background-color: #002F55;
    border: none;
    height: 50px;
    border-radius: 12px;
    color: #FEFEFE;
    padding-left: 10px;
}

.input-login::placeholder{
    color: #FEFEFE;
    opacity: 0.7; 
}
.texto_login{
    color: #0F5699;
    
}

@media (min-width: 1440px) {
 .texto_login{
    background-size:50%;
    background-position: 100% 10%;
    background-repeat: no-repeat;
 }
}

.boton_login{
    background-color: #002F55;
    border: none;
    border-radius: 10px;
    height: 38px;
    color: #FEFEFE;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 0.8em;
}

.boton_login:hover{
    background-color: #FEFEFE;
    color: #0F5699;
    transition: background-color 0.3s ease, transform 0.3s ease;
    outline: 1px solid #0F5699;
}

.boton_login_contraseña{
    background-color: transparent;
    border: 1px solid #0F5699;
    border-radius: 10px;
    height: 40px;
    color: #0F5699;
    font-size: 0.8em;
}

.boton_login_contraseña:hover{
    background-color: #0F5699;
    color: #FEFEFE;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.btn_registrar{
    background-color: transparent;
    border: 1px solid #FEFEFE;
    border-radius: 10px;
    height: 35px;
    color: #FEFEFE;
    font-size: 0.8em;
    text-decoration: none;
}

.btn_registrar:hover{
    background-color: #FEFEFE;
    color: #0F5699;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

