/* REQUIRED: put the form within a div/section that has .form-container */
.email-form-container {
  background-color: white;
  padding: 2rem;
  font-size: 100%;
  max-width: 1080px;
  display: grid;
  margin-bottom: 40px;
  height: auto;
}

.email-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.email-form input[type=email] {
  padding: 0.75rem;
  border: 1.25px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  width: 70%;
  text-align: center;
}

.email-form button {
  padding: 0.75rem;
  background-color: #006FE8;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s;
  margin-top: 0.4rem;
}
@media (max-width: 400px) {
  .email-form button .email-form button {
    padding: 0.75rem;
    font-size: 0.85rem;
  }
}

.email-form button:hover {
  background-color: #007bff;
}

.email-form p {
  margin: 0;
  margin-top: -0.5rem;
  font-size: 0.7rem;
}

.email-form-success-message {
  display: none;
  color: #28a745;
  text-align: center;
  margin-top: 1rem;
}

.email-form-error-message {
  display: none;
  color: #dc3545;
  text-align: center;
  margin-top: 1rem;
}

.email-form-note {
  font-size: 0.875rem;
  color: #666;
  margin-top: -0.25rem;
}/*# sourceMappingURL=email_form.css.map */