@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Luckiest+Guy&family=Sono:wght@200..800&display=swap');


* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Outfit", sans-serif;
  }
  
  body {
    min-height: 100vh;
    max-width: 100%;
    overflow: hidden;
    background-color: #ffffff;
    text-align: center;
    background-image: url("./bg.png");
    background-size:cover ;
    background-repeat:no-repeat ;
    background-position: center;
}

h1{
    margin-top: 10rem;
    font-family: 'Luckiest Guy', sans-serif;
    font-size: 60px;
    letter-spacing: 4px;
    color: #222e50;
    
}


/* NavBar */
/* NavBar */
/* NavBar */

#navbar {
  color: #f9dc5c;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background-color:#222E50;
  transition: background-color 1s;
  z-index: 1000;
}

/* Estilo Encabezado Derecho */
#navbar a {
  color: #f9dc5c;
  text-decoration: none;
}

/* Color de fondo cuando se scrollea */
#navbar.scrolled {
  background-color: #12294E;
}

.logo_nav_container {
  display: flex; 
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Icono Hamburguesa Oculto por default */
.icono_menu {
  display: none;
}

.container_nav {
  display: flex;
  width: 95%;
  max-width: 1900px;
  margin: 0 auto;
  font-size: 13pt;
}


.nav_menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: bold;
}

.nav_menu ul li {
  display: inline-block;
}

.nav_menu ul li a {
  display: block;
  padding: 0rem 1rem;
  transition: all 0.4s linear;
}

/* Efecto Botones Navbar */
/* .nav_menu ul li a:hover {
  box-shadow: 0 0 10px 0 #39a0ed inset, 0 0 10px 4px #39a0ed;
  border-radius: 3px;
} */

.nav_menu ul li a::before {
  margin-left: auto;
}

.nav_menu ul li a::after,
.nav_menu ul li a::before {
  content: "";
  width: 0%;
  height: 2px;
  background: #39a0ed;
  display: block;
  transition: 0.5s;
}

.nav_menu ul li a:hover::after,
.nav_menu ul li a:hover::before {
  width: 100%;
}


/* Inputs de Registro */

.container-register{
    display: flex;
    position: relative;
    margin: auto;
    justify-content: center;
    
}
.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 350px;
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    position: relative;
    border: solid 2px;
  }
  
  .title {
    font-size: 28px;
    color: royalblue;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
  }
  
  .title::before,.title::after {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    border-radius: 50%;
    left: 0px;
    background-color: royalblue;
  }
  
  .title::before {
    width: 18px;
    height: 18px;
    background-color: royalblue;
  }
  
  .title::after {
    width: 18px;
    height: 18px;
    animation: pulse 1s linear infinite;
  }
  
  .message, .signin {
    color: rgba(88, 87, 87, 0.822);
    font-size: 14px;
  }
  
  .signin {
    text-align: center;
  }
  
  .signin a {
    color: royalblue;
  }
  
  .signin a:hover {
    text-decoration: underline royalblue;
  }
  
  .flex {
    display: flex;
    width: 100%;
    gap: 6px;
  }
  
  .form label {
    position: relative;
  }
  
  .form label .input {
    width: 100%;
    padding: 10px 10px 20px 10px;
    outline: 0;
    border: 1px solid rgba(105, 105, 105, 0.397);
    border-radius: 10px;
  }
  
  .form label .input + span {
    position: absolute;
    left: 10px;
    top: 15px;
    color: grey;
    font-size: 0.9em;
    cursor: text;
    transition: 0.3s ease;
  }
  
  .form label .input:placeholder-shown + span {
    top: 15px;
    font-size: 0.9em;
  }
  
  .form label .input:focus + span,.form label .input:valid + span {
    top: 30px;
    font-size: 0.7em;
    font-weight: 600;
  }
  
  .form label .input:valid + span {
    color: green;
  }
  
  .submit {
    border: none;
    outline: none;
    background-color: royalblue;
    padding: 10px;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    transform: .3s ease;
  }
  
  .submit:hover {
    background-color: rgb(56, 90, 194);
  }
  
  @keyframes pulse {
    from {
      transform: scale(0.9);
      opacity: 1;
    }
  
    to {
      transform: scale(1.8);
      opacity: 0;
    }
  }



.text-apoyo-index{
    margin-top: 15rem;    
}


/* Footer */
/* Footer */

footer{
  display: flex;
  position: fixed;
  padding: 1rem;
  gap: 5px;
  background-color: #222e50;
  color: #f9dc5c;
  justify-content: center;
  align-items: center;
  font-size: 9pt;
  padding-left: 8pt;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 25px;
}
/* Formulario Ingreso */
/* Formulario Ingreso */


.form {
    background-color: #fff;
    display: block;
    padding: 1rem;
    max-width: 350px;
    border: solid 2px;
    margin: auto;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  }
  
  .form-title {
    font-size: 28px;
    color: royalblue;
    font-weight: 600;
    letter-spacing: -1px;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 30px;
  }
  
  .input-container {
    position: relative;
  }
  
  .input-container input, .form button {
    outline: none;
    border: 1px solid #e5e7eb;
    margin: 8px 0;
  }
  
  .input-container input {
    background-color: #fff;
    padding: 1rem;
    padding-right: 3rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    width: 300px;
    border-radius: 0.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  }
  
  .input-container span {
    display: grid;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    place-content: center;
  }
  
  .input-container span svg {
    color: #9CA3AF;
    width: 1rem;
    height: 1rem;
  }
  
  .submit {
    display: block;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    background-color: #4F46E5;
    color: #ffffff;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    width: 100%;
    border-radius: 0.5rem;
    text-transform: uppercase;
  }
  
  .signup-link {
    color: #6B7280;
    font-size: 0.875rem;
    line-height: 1.25rem;
    text-align: center;
  }
  
  .signup-link a {
    text-decoration: underline;
  }



/* Media query para celulares */
/* Media query para celulares */
  @media (max-width: 500px){

    .logo_navbar{
      width: 12%;
      height: 12%;
    }

    h1{
      margin-top: 5rem;
      font-family: 'Luckiest Guy', sans-serif;
      font-size: 40px;
      letter-spacing: 4px;
      color: #222e50;
   }
  
   .text-apoyo-index{
    margin-top: 5rem;
   }

  }