
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
/* Establece una imagen de fondo para el body (puedes cambiar la ruta de la imagen) */

.horizontal-align {
    display: flex;
    gap: 10px; /* Ajusta el espacio entre los elementos según tus necesidades */
}


body {

  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(46, 200, 185, 0.2)), url('prueba1.jpg');
  background-size: cover; /* Ajusta la imagen de fondo para cubrir todo el cuerpo */
  background-repeat: no-repeat; /* Evita que la imagen de fondo se repita */
  background-attachment: fixed; /* Fija la imagen de fondo para que no se desplace con el contenido */
  background-color: rgb(0, 0, 0);
  margin: auto;
  width: auto;
  

  }
  
    
.text-center{
	text-align:center;
    font-family: 'Courier New', Courier, monospace;
}

/* Estilos para la ventana emergente */
#ventana-emergente {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 5vw; /* Utilizamos unidades vw para un padding relativo al ancho de la ventana */
    color: white;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    border-radius: 5px;
    z-index: 9999;
    width: 90%; /* Utilizamos un ancho relativo */
    max-width: 600px; /* Ancho máximo en píxeles */
    overflow: auto; /* Agregar barra de desplazamiento si es necesario */
}

/* Estilos para el botón de cierre */
.close-btn {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    color: white;
}

/* Estilos para el contenido dentro de la ventana emergente (por ejemplo, un formulario) */
#ventana-emergente-content {
    /* Estilos de ejemplo */
    padding: 20px;
}


/* Estilos para la ventana emergente de éxito */
.success {
    background-color: green;
}

/* Estilos para la ventana emergente de error */
.error {
    background-color: #d1d12d;
}




.center-container {
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    /* Otros estilos específicos para este contenedor */
}

/* Otros estilos para .center-container van aquí */


.box {
    display: flex; /* Cambia el modo de visualización a flex */
    flex-wrap: wrap; /* Permite que los elementos se envuelvan si no caben en una sola fila */
    justify-content: space-around; /* Distribuye los elementos de manera uniforme en el contenedor */
    position: relative;
    width: 500px;
    height: 600px;
    background: #0e0e0e;
    border-radius: 8px;
    overflow: hidden;
}

.box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 880px;
    height: 920px;
    background: linear-gradient(0deg, transparent, transparent, #6cc89e   , #6cc89e  , #6cc89e  );
    z-index: 1;
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
}

.box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 880px;
    height: 920px;
    background: linear-gradient(0deg, transparent, transparent, #6cc89e  , #6cc89e  , #6cc89e  );
    z-index: 1;
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
    animation-delay: -3s;
}

.borderLine {
    position: absolute;
    top: 0;
    inset: 0;
}

.borderLine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 880px;
    height: 920px;
    background: linear-gradient(0deg, transparent, transparent, #2ec8b9, #2ec8b9, #2ec8b9);
    z-index: 1;
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
    animation-delay: -1.5s;
}

.borderLine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 880px;
    height: 920px;
    background: linear-gradient(0deg, transparent, transparent, #2ec8b9, #2ec8b9, #2ec8b9);
    z-index: 1;
    transform-origin: bottom right;
    animation: animate 6s linear infinite;
    animation-delay: -4.5s;
}

@keyframes animate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*color fondo del contorno de login*/
.box form {
    position: absolute;
    inset: 4px;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 8px;
    z-index: 2;
}















/*pie pag*/
.wrapp1{
display: flex;
justify-content: center; /* Centra horizontalmente los elementos en el contenedor */
align-items: center; /* Centra verticalmente los elementos en el contenedor */
font-size: 20px;

}
/* Estilos adicionales para hacerlo responsive */
@media (max-width: 768px) {
  .wrapp1 {
      font-size: 16px; /* Reduce el tamaño del texto en dispositivos más pequeños */
  }
}


@media (max-width: 480px) {
  .wrapp1 {
      font-size: 14px; /* Reduce aún más el tamaño del texto en dispositivos extra pequeños */
  }
}


/*Fondo botones*/

header {
width: 100%;
height: auto; /* Cambiado a auto para adaptarse al contenido */
padding: 20px 0;
font-family: 'Courier New', Courier, monospace;
background: rgba(185, 37, 37, 0); /* Fondo 100% transparente (completamente transparente) */
overflow: hidden;
}
/* Estilos para el texto del encabezado */
header h1 {
font-size: 2em; /* Tamaño de fuente inicial */
}

/* Media query para pantallas más pequeñas */
@media screen and (max-width: 768px) {
header h1 {
    font-size: 1.5em; /* Tamaño de fuente más pequeño para pantallas más pequeñas */
}
}

  nav ul {
      list-style: none;
      display: flex;
      gap: 10px; /* Espacio entre los elementos */
  }
  
  nav li {
      margin: 0;
      padding: 0;
  }
  
  nav li a {
      text-decoration: none;
  }
  
  
  nav img {
      max-width: 2cm; /* Establece el ancho máximo de la imagen a 3 centímetros */
      max-height: 1.6cm; /* Establece la altura máxima de la imagen a 3 centímetros */
  }
  
  
  
  .wrapp {
    max-width: 1800px;
    width: 90%;
    margin: auto;
    margin-top: 0; /* Elimina el margen superior */
    overflow: hidden;
  }
  
  /* Media query para pantallas más pequeñas */
  @media screen and (max-width: 768px) {
    .wrapp {
        width: 95%; /* Reducir el ancho para pantallas más pequeñas */
        max-width: none; /* Eliminar el ancho máximo para que el contenedor se ajuste completamente */
    }
  }
  
  
  
  nav {
      float: right;
  }
  
  nav ul li {
      display: inline-block;
      margin:0px 5px;
  }
  
  
  /*Color botones*/
  nav ul li a {
      display: block;
      background: rgba(88, 66, 66, 0); /* Fondo 100% transparente (completamente transparente) */
      color: #657979;
      padding:10px 20px;
      text-decoration: none;
      border-radius:3px;
      transition:all 300ms ease;
  }
  
  nav ul li a:hover {
      color: #000000;
    background-color: rgba(0, 255, 229, 0.2); /* Establece el color de fondo final */
  }
  
  
  /* Estilo para el enlace seleccionado o en la página actual */
  #menu a.current {
      color: #000000; /* Cambia el color del texto */
      background-color: rgba(0, 255, 229, 0.3); /* Establece el color de fondo final */

  }
  
  
  #menu li a {
    display: flex;
    align-items: center;
  }
  
  
  #menu li:last-child a {
    background-color: #2ec8b9;
    color: #fff;
    padding: 10px;
    border-radius: 50%;
  }
  
  
  .mensaje {
    background: #2ec8b9;
    padding: 20px;
    font-family: Qwigley;
    color: #fff;
    text-align: center;
    margin: 20px 0;
    border-radius: 5px;
    font-size: 25px;
 

  }
  
  .bienvenido {
    background: #2ec8b9;
      padding: 20px;
      font-family: Qwigley;
      color: #ffffff;
      text-align: center;
      margin: 20px 0;
      border-radius: 5px;
      font-size: 25px;
      
 
    }
    
    
       


.whatsapp-icon {
    position: fixed;
    bottom: 30px;
    right: 10px;
    font-size: 4rem; /* Tamaño del ícono */
    color: #21a521;
  }
  

  

/* Estilos específicos para el pie de página */
footer {
    background: rgba(22, 11, 11, 0); /* Fondo 100% transparente (completamente transparente) */
     color: #000000;
     text-align: center;
     font-family: 'Poppins', sans-serif;
     padding: 20px 0;
     max-width: 1800px;
     width: 90%;
     margin: auto;
     font-size: 20px;
 }
 
 footer .divider {
     width: 100%; /* Ancho de la línea divisoria */
     height: 90px; /* Grosor de la línea divisoria */
     background-color: #2ec8b9; /* Color de la línea divisoria */
     margin: 10px 0; /* Espaciado superior e inferior de la línea divisoria */
     border-radius: 5px;
     position: relative; /* Agrega posición relativa al contenedor */
     display: flex; /* Utiliza flexbox para centrar elementos */
     align-items: center; /* Centra verticalmente */
     justify-content: center; /* Centra horizontalmente */
 }
 
 footer .divider .fas {
     color: #fff; /* Cambia el color del icono */
     font-size: 24px; /* Cambia el tamaño del icono */
     margin: 0 10px; /* Espacio entre el icono y otros elementos (ajusta según sea necesario) */
 }

 
  .input {
    max-width: 100%;
    height: 45px;
    width: 390px; /* Ajusta el ancho según tus necesidades */
    outline: none;
    font-size: 16px;
    border-radius: 5px;
    padding-left: 15px;
    border: 1px solid #ccc;
    border-bottom-width: 2px;
    transition: all 0.3s ease;
    position: relative;
  }
  .inputs-container {
    display: flex;
    justify-content: space-between;
  }
  


  .input:valid {
    border-color: #2ec8b9;
    color: #000000;
    box-shadow: 2px 2px 8px 1px #2ec8b9;

  }
  
  .input:invalid {
    border-color: #d1d12d;
    color: #000000;
    box-shadow: 2px 2px 8px 1px #e1e51b;
    /* translate: -8px 8px 0px 0px; */
  }
  
  .text {
    margin-top: 10px;
    color: black;
  }
  








  


  button, input[type="submit"] {
    position: relative;
    margin: 0;
    padding: 17px 35px;
    outline: none;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #fff;
    border: 1px solid rgba(22, 150, 167, 0.6);
    border-radius: 10px;
    color: #030405;
    font-weight: 600; /* Mantén el peso de la fuente que deseas */
    font-family: inherit;
    z-index: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.02, 0.01, 0.47, 1);
    width: 200px;
    font-size: 16px; /* Tamaño de la letra ajustado aquí */
  }
  
  button span, input[type="submit"] span {
    color: #2ec8b9;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.7px;
  }
  
  button:hover, input[type="submit"]:hover {
    animation: rotate624 0.7s ease-in-out both;
    background-color: rgba(79, 201, 197, 0.2);

    color: #4c4a4a;
  }
  
  button:hover span, input[type="submit"]:hover span {
    animation: storm1261 0.7s ease-in-out both;
    animation-delay: 0.06s;
  }
  
  @keyframes rotate624 {
    0% {
      transform: rotate(0deg) translate3d(0, 0, 0);
    }
  
    25% {
      transform: rotate(3deg) translate3d(0, 0, 0);
    }
  
    50% {
      transform: rotate(-3deg) translate3d(0, 0, 0);
    }
  
    75% {
      transform: rotate(1deg) translate3d(0, 0, 0);
    }
  
    100% {
      transform: rotate(0deg) translate3d(0, 0, 0);
    }
  }
  
  @keyframes storm1261 {
    0% {
      transform: translate3d(0, 0, 0) translateZ(0);
    }
  
    25% {
      transform: translate3d(4px, 0, 0) translateZ(0);
    }
  
    50% {
      transform: translate3d(-3px, 0, 0) translateZ(0);
    }
  
    75% {
      transform: translate3d(2px, 0, 0) translateZ(0);
    }
  
    100% {
      transform: translate3d(0, 0, 0) translateZ(0);
    }
  }
  
  .btn-shine {
    border: 1px solid;
    overflow: hidden;
    position: relative;
  }
  
  .btn-shine span, input[type="submit"].btn-shine span {
    z-index: 20;
  }
  
  .btn-shine:after, input[type="submit"].btn-shine:after {
    background: #2ec8b9;
    content: "";
    height: 155px;
    left: -75px;
    opacity: 0.4;
    position: absolute;
    top: -50px;
    transform: rotate(35deg);
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
    width: 50px;
    z-index: -10;
  }
  
  .btn-shine:hover:after, input[type="submit"].btn-shine:hover:after {
    left: 120%;
    transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  }
  

  



  .btn, input[type="submit"] {
    padding: 1rem 2rem;
    font-weight: 700;
    background: rgb(255, 255, 255);
    color: #574f4f;
    border-radius: .5rem;
    border-bottom: 2px solid #2ec8b9;
    border-right: 2px solid #2ec8b9;
    border-top: 2px solid white;
    border-left: 2px solid white;
    transition-duration: 1s;
    transition-property: border-top, 
       border-left, 
       border-bottom,
       border-right,
       box-shadow;
   }
   
   .btn:hover {
    border-top: 2px solid #2ec8b9;
    border-left: 2px solid #2ec8b9;
    border-bottom: 2px solid #2ec8b9;
    border-right: 2px solid #2ec8b9;
    box-shadow: rgba(46, 172, 240, 0.4) 5px 5px, rgba(46, 240, 211, 0.3) 10px 10px, rgba(46, 221, 240, 0.2) 15px 15px;
   }



    /* Estilos para el modal */
        .modal {
            display: none; /* Ocultar el modal por defecto */
            position: fixed; /* Fijar el modal en la pantalla */
            z-index: 1; /* Asegurarse de que esté por encima de otros elementos */
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.4); /* Fondo semitransparente */
            display: flex;
            align-items: center; /* Centrar verticalmente */
            justify-content: center; /* Centrar horizontalmente */
        }
        .modal-content {
            background-color: #fefefe;
            margin: 0;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 500px; /* Ancho máximo del modal */
            border-radius: 5px; /* Bordes redondeados opcionales */
            position: relative;
        }
        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            top: 10px;
            right: 10px;
        }
        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }
       