/** Shopify CDN: Minification failed

Line 195:0 Expected "}" to go with "{"

**/
/* Newsletter Section Styles */
.newsletter-section {
  display: flex;
  flex-wrap: nowrap; /* Prevent wrapping */
  align-items: stretch; /* Stretch children to fill the section vertically */
  width: 100%; /* Full viewport width */
}

/* Image Container Styles */
.newsletter-image-container {
  flex: 0 0 50%; /* Take up 50% width without growing or shrinking */
  display: flex;
}

.newsletter-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Ensure the image covers the area */
}

/* Newsletter Content Styles */
.newsletter-content {
  flex: 0 0 50%; /* Take up 50% width */
  background-color: #B266D9; /* Purple background */
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
}

/* Inner Content Container Styles */
.newsletter-content-inner {
  width: 80%; /* Adjust this value as needed for your design */
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center content vertically */
  color: #000; /* White text for content */
}

.newsletter-heading {
  font-size: 4rem; /* Larger font size for the heading */
  margin-bottom: 1.5rem; /* Spacing below the heading */
  color:#000;
}

.newsletter-subheading {
  margin-bottom: 1.5rem; /* Spacing below the subheading */
  color:#000;
}

/* Newsletter Form Styles */
.newsletter-form {
  display: flex;
  flex-direction: column; /* Stack form elements vertically */
  align-items: center; /* Center align the form elements */
  width: 100%; /* Ensure the form takes the full width */
}

.newsletter-input-group {
  display: flex;
  width: 100%; /* Take the full width of the form */
  border-bottom: 2px solid #000; /* White underline for the entire group */
  margin-bottom: 1rem; /* Provide space between the form and the messages */
}

.newsletter-input-field {
  flex-grow: 1;
  background: transparent;
  border: none;
  color: #000; /* White text */
  padding: 0.5rem 1rem;
  font-size: 1.8rem;
  margin-right: -2px; /* Adjust if there is a gap between the input and button */
}

/* Style the placeholder */
.newsletter-input-field::placeholder {
  color: #000; /* White text for placeholder */
  opacity: 1; /* Make sure the placeholder is fully opaque */
}

/* For compatibility with older browsers that use vendor prefixes */
.newsletter-input-field::-webkit-input-placeholder {
  color: #000;
}

.newsletter-input-field:-moz-placeholder {
  color: #000;
  opacity: 1;
}

.newsletter-input-field::-moz-placeholder {
  color: #000;
  opacity: 1;
}

.newsletter-input-field:-ms-input-placeholder {
  color: #000;
}


.newsletter-submit-btn {
  background: none;
  border: none;
  color: #000; /* White text */
  padding: 0.5rem 1rem;
  cursor: pointer;
  text-transform: uppercase;
  position: relative; /* Position relative for the pseudo-element */
}

.newsletter-submit-btn::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px; /* Align with the bottom of the button */
  height: 2px; /* Height of the underline */
  width: 100%; /* Full width of the button */
  background: #000; /* White underline */
}



/* Responsive Adjustments */

@media (max-width: 768px) {
  .newsletter-heading {
    font-size: 3rem; /* Set font size to 3rem on smaller screens */
    margin-top: 20px; /* Add a margin at the top */
  }


@media (max-width: 768px) {
  .newsletter-section {
    flex-direction: column;
  }

  .newsletter-image-container {
    display: none; /* Hide the image container on mobile */
  }

  .newsletter-content {
    flex: 0 0 100%; /* Full width on small screens */
    background-color: #A54CD2;
  }

  .newsletter-content-inner {
    width: 90%; /* Adjust inner width on small screens if necessary */
  }

 .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
  
  .newsletter-input-field {
    width: 100%; /* Make input field full width on mobile */
    margin-bottom: 0.5rem; /* Space between input field and button */
  }
  
  .newsletter-submit-btn {
    width: auto; /* Allow the button to fit content */
    padding: 0.5rem 1rem;
    margin-top: 0.5rem; /* Space between input field and button */
  }
}


/* Success and Error Message Styles */
.newsletter-success-message,
.newsletter-error-message {
  width: 100%; /* Ensure messages take full width of the form */
  text-align: center;
  padding: 1rem;
  margin-top: 0.5rem; /* Space above the messages */
  border-radius: 4px;
}

.newsletter-error-message {
  color: #a94442; /* A red color for error messages */
  background-color: #f2dede; /* Light red background */
  border-color: #ebccd1;
}

.newsletter-success-message {
  color: #3c763d; /* A green color for success messages */
  background-color: #dff0d8; /* Light green background */
  border-color: #d6e9c6;
}
