body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: #1c1c1c; /* gris antracita */
  color: #fff;
  text-align: center;
}

.container {
  max-width: 600px;
  padding: 20px;
}

.logo {
  width: 300px;
  margin-bottom: 20px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  font-weight: 400;
  color: #e0e0e0;
}

p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #cccccc;
}

.form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

input[type="email"] {
  padding: 12px;
  border: none;
  border-radius: 8px;
  width: 250px;
  font-family: 'Poppins', sans-serif;
  outline: none;
}

button {
  padding: 12px 24px;
  border: 2px solid #fff;
  border-radius: 8px;
  background: #fff;
  color: #1c1c1c;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

button:hover {
  background: #1c1c1c;
  color: #fff;
  border: 2px solid #fff;
}
