/* Базовые стили */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
}

/* Контейнер */
.container {
  max-width: 600px;
  padding: 20px;
  animation: fadeIn 2s ease-in-out;
}

/* Заголовок */
h1 {
  font-size: 2.8rem;
  margin-bottom: 0.4em;
}

/* Подзаголовок */
.subtitle {
  font-size: 1.2rem;
  margin-bottom: 1.5em;
  color: #cccccc;
}

/* Форма */
.subscribe-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

input[type="email"] {
  padding: 0.75em 1em;
  border: none;
  border-radius: 5px;
  width: 250px;
  max-width: 100%;
}

button {
  padding: 0.75em 1.5em;
  border: none;
  border-radius: 5px;
  background-color: #00c6ff;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background-color: #0077b6;
}

/* Анимация появления */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

