.superlux-newsletter-form {
  width: 100%;
}

.superlux-newsletter-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
}

.superlux-newsletter-field input[type="email"] {
  width: 100%;
  min-height: 42px;
  padding: 8px 0;
  color: inherit;
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  outline: none;
}

.superlux-newsletter-field input[type="email"]:focus {
  border-bottom-width: 2px;
}

.superlux-newsletter-field button {
  min-height: 42px;
  padding: 8px 12px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 5px;
  cursor: pointer;
}

.superlux-newsletter-field button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.superlux-newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.4;
}

.superlux-newsletter-consent input {
  flex: 0 0 auto;
  margin-top: 2px;
}

.superlux-newsletter-consent a {
  color: inherit;
  text-decoration: underline;
}

.superlux-newsletter-message {
  min-height: 1.4em;
  margin: 10px 0 0;
  font-size: 13px;
}

.superlux-newsletter-message.is-success {
  color: #18713c;
}

.superlux-newsletter-message.is-error {
  color: #b42318;
}

.superlux-newsletter-hp {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

@media (max-width: 767px) {
  .superlux-newsletter-field {
    grid-template-columns: 1fr;
  }

  .superlux-newsletter-field button {
    justify-self: start;
  }
}

