/** Shopify CDN: Minification failed

Line 32:0 Unexpected "}"

**/
.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 {
    align-items: flex-start;
    margin: 0 auto;
    max-width: 36rem;
  }
}

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

.newsletter-form__field-wrapper .field__input {
  padding-right: 5rem; /* existing style */
  background-color: transparent; /* Ensures the input background is transparent, if needed */
}

}

.newsletter-form__field-wrapper .field {
  z-index: 0;
}

.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__button {
  width: 4.4rem;
  margin: 0;
  right: var(--inputs-border-width);
  top: 0;
  height: 100%;
  z-index: 2;
}

.newsletter-form__button:focus-visible {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.4rem rgba(var(--color-foreground));
  background-color: rgb(var(--color-background));
}

.newsletter-form__button:focus {
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)), 0 0 0 0.4rem rgba(var(--color-foreground));
  background-color: rgb(var(--color-background));
}

.newsletter-form__button:not(:focus-visible):not(.focused) {
  box-shadow: inherit;
  background-color: inherit;
}

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

/* Ensures the newsletter block and its contents are aligned to the left */
.footer-block__newsletter,
.footer-block__newsletter .footer-block__heading,
.newsletter-signup-description,
.newsletter-form {
  text-align: left;
  align-items: flex-start; /* For flex containers */
}

/* Adjusts newsletter form alignment and spacing */
.newsletter-form {
  justify-content: flex-start;
  width: auto; /* Adjust based on your layout needs */
}

/* Specific adjustments for the input wrapper to align items */
.newsletter-form__field-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Ensure the button aligns properly if it's positioned absolutely */
.newsletter-form__button {
  position: static; /* Adjust based on your setup, might need to alter if using absolute positioning */
}
