/** Shopify CDN: Minification failed

Line 69:56 Expected "}" to go with "{"

**/
.newsletter-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

@media screen and (min-width: 750px) {
  .newsletter-form {
    flex-direction: row;
    align-items: flex-start;
    margin: 0 auto;
    max-width: 150rem;
  }
}

.newsletter-form__field-wrapper {
  width: 100%;
}

.newsletter-form__field-wrapper .field__input {
  padding-right: 5rem;
    background-color: #FFFFFF;
  border: 2px solid rgb(var(--color-base-accent-2));
  
}

.newsletter-form__message {
  justify-content: center;
  margin-bottom: 0;
}

.newsletter-form__message--success {
  margin-top: 2rem;
}

@media screen and (min-width: 750px) {
  .newsletter-form__message {
    justify-content: flex-start;
  }

  .newsletter-form__message--success {
    position: absolute;
    left: 0;
    bottom: -65%;
  }
}

.newsletter-form__button {
  width: 10rem;
  margin: 0;
  background-color: rgb(var(--color-base-accent-2));
}

.newsletter-form__button .icon {
  width: 1.5rem;
  color: #FFFFFF;
}


.newsletter-form__button:hover {
  background-color: rgb(var(--color-base-accent-2), .5);