body {
    background-color: black;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

section 
{
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
  overflow: hidden;
}
section::before 
{
  content: '';
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(#000,#009AFE,#000);
  animation: animate 5s linear infinite;
}
@keyframes animate 
{
  0%
  {
    transform: translateY(-100%);
  }
  100%
  {
    transform: translateY(100%);
  }
}
section span 
{
  position: relative;
  display: block;
  width: calc(6.25vw - 2px);
  height: calc(6.25vw - 2px);
  background: #181818;
  z-index: 2;
  transition: 1.5s;
}
section span:hover 
{
  background: #009AFE;
  transition: 0s;
}

.container {
    position:absolute;
    display: flex;
    max-width: 400px;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    background-color: black;
    border: 5px solid #009AFE ; /* Color del borde */
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    color: white;
}

#Login {
    margin-bottom: 30px; /* Espacio entre el label y el input */
    text-align: center;
    font-size:30px;
    color: #009AFE;
    margin-top:10px;
}

.container input[type="text"],
.container input[type="password"],
.container input[type="submit"] {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #AAADAF;
}

.container input[type="text"]:focus,
.container input[type="password"]:focus,
.container input[type="submit"]:focus {
    background-color: white; /* Cambia el color de fondo al hacer clic */
    color: black; /* Cambia el color del texto al hacer clic */
    outline: none; /* Quita el contorno predeterminado al hacer clic */
}

.container input[type="submit"] {
    background-color: #009AFE;
    color: black;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top:25px;
}

.container input[type="submit"]:hover {
    background-color: white;
    color:black;
}


@media screen and (max-width: 480px) {
    .container {
        max-width: 300px;
    }
}