@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #1d2671, #c33764);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

.container {
  max-width: 500px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

p {
  margin-bottom: 30px;
  font-size: 1.1em;
}

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

input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 5px;
  outline: none;
  width: 65%;
  font-size: 1em;
}

button {
  padding: 10px 20px;
  border: none;
  background-color: #ff6a00;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover {
  background-color: #ff8c42;
}

