body {
  background-color: black;
  color: black;
  font-family: 'Roboto Mono', monospace;
  margin: 0;
  padding: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#fondo-video {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

main {
  display: grid;
  gap: 2rem;
  background-color: rgb(218, 218, 218);
  padding: 2rem;
  border-radius: 30px;
  border: 3px solid gray;
  width: 90%;
  max-width: 500px;
}

h2 {
  text-align: center;
  font-size: 25px;
  color: #000;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

label {
  font-size: 0.9rem;
  color: #333;
}

input {
  border: none;
  border-bottom: 2px solid black;
  background: transparent;
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #000;
  outline: none;
}

input::placeholder {
  color: #777;
}

button {
  margin-top: 1rem;
  padding: 0.7rem;
  border: none;
  background-color: #000;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #333;
}
