.newsletter-signup {
  width: min(100%, 560px);
  margin: 30px auto 0;
  text-align: center;
}

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

.newsletter-signup__form[hidden] {
  display: none;
}

.newsletter-signup__input {
  box-sizing: border-box;
  min-width: 0;
  flex: 1;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #b8b8b8;
  border-radius: 0;
  background: #fff;
  color: #111;
  font-family: Poppins, sans-serif;
  font-size: 16px;
}

.newsletter-signup__input:focus {
  border-color: #888;
  outline: none;
}

.newsletter-signup__button {
  box-sizing: border-box;
  height: 52px;
  padding: 0 22px;
  border: 2px solid #c8ff35;
  border-radius: 0;
  background: #c8ff35;
  color: #111;
  cursor: pointer;
  font-family: Poppins, sans-serif;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
}

.newsletter-signup__button:hover {
  border-color: #111;
}

.newsletter-signup__button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.newsletter-signup__status {
  min-height: 22px;
  margin: 9px 0 0;
  color: #333;
  font-family: Poppins, sans-serif;
  font-size: 13px;
}

.newsletter-signup__honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

@media screen and (max-width: 560px) {
  .newsletter-signup {
    width: calc(100% - 32px);
    margin-top: 24px;
  }

  .newsletter-signup__form {
    flex-direction: column;
  }

  .newsletter-signup__button,
  .newsletter-signup__input {
    width: 100%;
    height: 52px !important;
    min-height: 52px;
    max-height: 52px;
  }
}
