/* Container geral da seção */
.paws-bites-newsletter {
  padding: 24px 16px;
  min-width: 350px;
}

.paws-bites-newsletter-form {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.paws-bites-newsletter-field {
  display: block;
  width: 100%;
}

.paws-bites-newsletter-input {
  width: 100%;
  padding: 14px 20px;
  border-radius: 8px;
  border: none;
  background: #ffffff;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  color: #000;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.paws-bites-newsletter-input::placeholder {
  color: #9a9a9a;
}

.paws-bites-newsletter-button {
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 16px 32px;
  border-radius: 999px;
  background: #46c3cd;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  text-transform: none;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


.paws-bites-newsletter-feedback.error {
  color: red;
  padding: 20px 0;
}

.paws-bites-newsletter-feedback.success {
  padding: 20px 0;
  text-align: center;
  color: green;
  font-weight: bold;
  font-size: 22px;
}

@media (min-width: 768px) {
  .paws-bites-newsletter-form {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .paws-bites-newsletter-input {
    width: 450px;
  }

  .paws-bites-newsletter-field {
    flex: 1 1 auto;
  }

  .paws-bites-newsletter-button {
    width: auto;
    white-space: nowrap;
    padding-inline: 40px;
  }
}
