* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  padding: 20px;
}

.container {
  max-width: 500px;
}

.logo {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00d9ff;
}

.headline {
  margin-top: 20px;
  font-size: 1.8rem;
  font-weight: 600;
}

.description {
  margin: 15px 0 30px;
  font-size: 1rem;
  color: #dcdcdc;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-form input {
  padding: 12px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
}

.email-form button {
  padding: 12px;
  border: none;
  background-color: #00d9ff;
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.email-form button:hover {
  background-color: #00b3cc;
}

.footer {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #999;
}
