body {
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Contenedor central */
.container {
  width: 90%;
  max-width: 420px;
  text-align: center;
}

/* Título principal */
h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

/* Subtítulo */
h2 {
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 25px;
  opacity: 0.8;
}

/* Input */
input {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: none;
  outline: none;
  text-align: center;
  font-size: 14px;
}

/* Botón */
button {
  width: 100%;
  padding: 14px;
  background: #fff;
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

/* Hover del botón */
button:hover {
  opacity: 0.85;
}

/* Mensaje */
.message {
  margin-top: 15px;
  font-size: 14px;
  min-height: 20px;
}

/* Mensaje éxito */
.message.success {
  color: #00ff88;
}

/* Mensaje error */
.message.error {
  color: #ff4d4d;
}