body {
  margin: 0;
  padding: 0;
  background: url('Mine el bot perfil.png') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Orbitron', sans-serif;
  color: #00ff88;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  backdrop-filter: brightness(0.3);
  overflow: hidden;
}

h1 {
  font-size: 3.5rem;
  text-shadow: 0 0 10px #00ff88;
  margin: 0.5em 0 0.2em;
  animation: fadeInDown 1s ease-in-out;
}

h2 {
  font-size: 1.4rem;
  font-weight: normal;
  margin-bottom: 2em;
  color: #ccc;
  animation: fadeIn 2s ease-in-out;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 90%;
  max-width: 400px;
  padding: 2em;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 16px;
  box-shadow: 0 0 20px #00ff88;
  animation: fadeInUp 1.5s ease-in-out;
}

input {
  padding: 14px;
  border: 1px solid #00ff88;
  background: black;
  color: #00ff88;
  border-radius: 8px;
  font-size: 1rem;
  transition: 0.3s;
}

input::placeholder {
  color: #66ffbb;
}

input:focus {
  outline: none;
  box-shadow: 0 0 10px #00ff88;
}

button {
  padding: 14px;
  background-color: #00ff88;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  color: black;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #00cc6a;
  transform: scale(1.05);
}

@keyframes fadeInDown {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1.2rem;
  }
}
