.matcha-newsletter-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
}

.matcha-newsletter-form {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 420px;
  width: 100%;
  background: #1f3308;
  padding: 14px 16px;
  border-radius: 16px;
  gap: 8px;
}

.matcha-newsletter-form input[type="email"] {
  flex-grow: 1;
  padding: 10px 14px;
  font-size: 1.2rem;
  border-radius: 12px;
  border: none;
  color: #d4e5a7;
  background: #3f5c1a;
}

.matcha-newsletter-form input::placeholder {
  color: #aabb7e;
}

.matcha-newsletter-form button {
  padding: 10px 20px;
  background: #a9c76d;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.3rem;
  color: #1a2c00;
  cursor: pointer;
  border: none;
}

#matcha-message {
  margin-top: 12px;
  text-align: center;
  font-size: 1.1rem;
  color: #a9c76d;
}

@media (max-width: 480px) {
  .matcha-newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .matcha-newsletter-form input,
  .matcha-newsletter-form button {
    width: 100%;
    font-size: 1.3rem;
  }
}
