@charset "utf-8";

body {
    background-image: url(imagenes/fondo_login.jpg);
    background-size: 100% 100%; /* Expande la imagen para que llene completamente el contenedor */
    background-position: center center; /* Centra la imagen tanto vertical como horizontalmente */
    background-repeat: no-repeat; /* Evita la repetición de la imagen */
    justify-content: center;
    align-items: center;
  }

.central{
    display: flex;
    justify-content: center;
    align-items: center;
    
}
  .navegador {
    width: 150px;
    height: 150px; /* Modificado para ser 150px x 150px */
    border-radius: 10%; /* Ajustado para mantener el mismo radio de borde */
    box-shadow:  8px 7px 10px rgba(0, 0, 0, 0.55); /* Ajustado el tamaño de la sombra */
    position: relative;
    justify-content: center;
    align-items: center;
    display: flex;
    overflow: hidden;
    background-color: #101010; /* Color de fondo transparente */
  }
  
  .link {
    overflow: hidden;
    color: aliceblue;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    z-index: 2;
  }
  
  .navegador::before {
    content: '';
    position: absolute;
    width: 200px; /* Modificado para ajustarse al nuevo tamaño del navegador */
    height: 200px; /* Modificado para ajustarse al nuevo tamaño del navegador */
    background-image: conic-gradient(rgb(90, 90, 211) 20deg, transparent 120deg);
    animation: trace-border 5s linear infinite;
  }
  
  @keyframes trace-border {
    from{
      transform: rotate(0deg);
    }
    to{
      transform: rotate(-360deg);
    }
  }
  
  .navegador::after {
    content: "";
    position: absolute;
    width: 140px; /* Modificado para ajustarse al nuevo tamaño del navegador */
    height: 140px; /* Modificado para ajustarse al nuevo tamaño del navegador */
    background-color: black;
    box-shadow: inset 8px 7px 10px rgba(0, 0, 0, 0.55); /* Ajustado el tamaño de la sombra */
    border-radius: 10%;
  }
  
  .navegador:hover::before {
    background-color: rgba(0, 255, 255, 0.7);/*  Color de neón al hacer hover */
  }
  
  .navegador:hover {
    background-color: rgba(0, 255, 255, 0.2);/*  Fondo ligeramente teñido al hacer hover */
  }
  


.fo{
  color: aliceblue;
}
#cajon {

    margin: 0 auto;   
    color: white;
    max-width: 100%;
}
#ini,
#crea {
    box-shadow: 0px 2px 10px rgba(245, 2, 2, 0.979);
    background-color: black;
    padding: 20px;
    border-radius: 5%;
}
input{
  border-radius: 20px; 
}
.cajones1{
  padding-left: 25%;
  padding-top: 15%;
  
}
.cajones2{
  padding-left: 25%;
  
}
.lluvia {
    position: relative;
    width: 100%;
    height: 200px;
  }
  
  .gota {
    position: absolute;
    width: 2px;
    height: 10px;
    background-color: #fff;
    animation: caida linear infinite;
  }
  
  @keyframes caida {
    0% {
      transform: translateY(-50px) rotate(45deg);
      opacity: 1;
    }
    100% {
      transform: translateY(300px) rotate(45deg);
      opacity: 0;
    }
  }

  .gota:nth-child(1) {
    left: 10%;
    animation-duration: 1s;
    animation-delay: 0s;
  }
  
  .gota:nth-child(2) {
    left: 20%;
    animation-duration: 0.8s;
    animation-delay: 0.2s;
  }
  
  .gota:nth-child(3) {
    left: 30%;
    animation-duration: 1.2s;
    animation-delay: 0.4s;
  }
  .gota:nth-child(4) {
    left: 40%;
    animation-duration: 1s;
    animation-delay: 0s;
  }
  
  .gota:nth-child(5) {
    left: 50%;
    animation-duration: 0.8s;
    animation-delay: 0.2s;
  }
  
  .gota:nth-child(6) {
    left: 60%;
    animation-duration: 1.2s;
    animation-delay: 0.4s;
  }
  .gota:nth-child(7) {
    left: 70%;
    animation-duration: 1s;
    animation-delay: 0s;
  }
  
  .gota:nth-child(8) {
    left: 80%;
    animation-duration: 0.8s;
    animation-delay: 0.2s;
  }
  
  .gota:nth-child(9) {
    left: 90%;
    animation-duration: 1.2s;
    animation-delay: 0.4s;
  }
  .gota:nth-child(10) {
    left: 90%;
    animation-duration: 1.2s;
    animation-delay: 0.4s;
  }
  .in{
    width: 20px;
    height: 20px;
}
