/*body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
}*/

body {
  background: orange;
}

/*.container {
  max-width: 500px;
  margin: 80px auto;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
} */

h1 {
  margin-bottom: 20px;
  color: #333;
}

#subscribe-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 100px;
}

#subscribe-form input {
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  width: 250px;
  font-size: 16px;
}

#subscribe-form button {
  padding: 12px 20px;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}

#subscribe-form button:hover {
  background: #4338ca;
}

#message {
  margin-top: 15px;
  font-size: 14px;
}

/* Popup */
.popup {
  position: fixed;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup.hidden {
  display: none;
}

.popup-content {
  padding: 25px 35px;
  border-radius: 10px;
  text-align: center;
  max-width: 300px;
  display: none;
}

#close-popup {
  margin-top: 15px;
  padding: 10px 20px;
  background: #4f46e5;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#close-popup:hover {
  background: #4338ca;
}