body{
    background: linear-gradient(to top, #49e484, #310c77);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
}

@keyframes neonColors {
  0% {
      box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00, 0 0 40px #00ff00, 0 0 50px #00ff00, 0 0 60px #00ff00, 0 0 70px #00ff00;
  }
  33% {
      box-shadow: 0 0 10px #00ffff, 0 0 20px #00ffff, 0 0 30px #00ffff, 0 0 40px #00ffff, 0 0 50px #00ffff, 0 0 60px #00ffff, 0 0 70px #00ffff;
  }
  66% {
      box-shadow: 0 0 10px #8d068d, 0 0 20px #8d068d, 0 0 30px #8d068d, 0 0 40px #8d068d, 0 0 50px #8d068d, 0 0 60px #8d068d, 0 0 70px #8d068d;
  }
  100% {
      box-shadow: 0 0 10px #00ff00, 0 0 20px #00ff00, 0 0 30px #00ff00, 0 0 40px #00ff00, 0 0 50px #00ff00, 0 0 60px #00ff00, 0 0 70px #00ff00;
  }
}



.form-container {
    width: 650px;
    height: 630px;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    animation: neonColors 10s infinite; /* Duración de la animación */
    color: #fff;
    background: linear-gradient(to top, #49e484, #1b0e20);
    
}

.title {
    text-align: center;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    margin: 20px 0 30px 0;
    font-size: 35px;
    font-weight: 800;
}

.form {
    width: 100%;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 20px;
    display: flex;
}

.input {
    border-radius: 20px;
    border: 1px solid  #fff;
    outline: 0 !important;
    box-sizing: border-box;
    padding: 12px 15px;
    background: linear-gradient(to top, #49e484, #dfdfdf);
}


.form-btn {
    padding: 15px 20px;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    border-radius: 20px;
    border: 0 !important;
    outline: 0 !important;
    background: #000000;
    color: white;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.form-btn:active {
    box-shadow: none;
}

.sign-up-label {
    margin: 0;
    font-size: 10px;
    color: #ffffff;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.sign-up-link {
    margin-left: 1px;
    font-size: 11px;
    text-decoration: underline;
    text-decoration-color: #000000;
    color: #000000;
    cursor: pointer;
    font-weight: 800;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.buttons-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 20px;
    gap: 15px;
}

.apple-login-button,
.google-login-button {
    border-radius: 15px;
    box-sizing: border-box;
    padding: 15px 20px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
        rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    font-size: 11px;
    gap: 5px;
}

.apple-login-button {
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
}

.google-login-button {
    border: 2px solid #747474;
    background-color: #fff;
    color: #000000;
   
}

.apple-icon,
.google-icon {
    font-size: 18px;
    margin-bottom: 1px;
}

/* Responsive design */
@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 1rem;
        width: 100%;
    }

    .input, .form-btn, .apple-login-button, .google-login-button {
        padding: 0.6rem;
    }
    
    .title {
        font-size: 1.25rem;
    }
}