.newsletter {
background-image: linear-gradient(to top, #e6e9f0 0%, #eef1f5 100%);
  padding: 20px 20px;
  text-align: center;
  border-radius: 10px;
  margin: 10px auto;
  max-width: 500px;
}

.newsletter h1 {
  margin-bottom: 5px;
  color: #333;
}

.newsletter p {
  margin-bottom: 10px;
  color: #615c5c;
}

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

.newsletter-form input {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  flex: 1;
  min-width: 200px;
}

.newsletter-form button {
  padding: 12px 24px;
  background-color: #e71823de;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.newsletter-form button:hover {
  background-color: #0056b3;
}

.newsletter-message {
  margin-top: 15px;
  color: #28a745;
  font-weight: bold;
}
