/* estiloLogin.css */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&display=swap');

body {
  margin: 0;
  padding: 0;
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #000 25%, #0f0f3d 75%);
  color: #ffffff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: backgroundPulse 8s infinite alternate;
  overflow: hidden;
}

@keyframes backgroundPulse {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.container {
  background-color: rgba(10, 10, 25, 0.9);
  border: 2px solid #0ff;
  box-shadow: 0 0 20px #0ff, 0 0 40px #00f, 0 0 80px #0ff;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  animation: flicker 2s infinite;
}

@keyframes flicker {
  0%, 100% { box-shadow: 0 0 10px #0ff, 0 0 20px #00f, 0 0 30px #0ff; }
  50% { box-shadow: 0 0 15px #00f, 0 0 25px #0ff, 0 0 35px #00f; }
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #0ff;
  text-shadow: 0 0 5px #0ff;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  background-color: #111;
  border: 2px solid #0ff;
  color: #0ff;
  border-radius: 8px;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px #0ff;
}

input[type="email"]:focus,
input[type="password"]:focus {
  box-shadow: 0 0 10px #00f, 0 0 20px #0ff;
}

button {
  width: 100%;
  padding: 0.75rem;
  background-color: #0ff;
  color: #000;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px #0ff, 0 0 20px #00f;
}

button:hover {
  background-color: #00f;
  color: #fff;
  box-shadow: 0 0 20px #0ff, 0 0 40px #00f;
}

@media (max-width: 600px) {
  .container {
    padding: 1.5rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}
