/* Import the Josefin Sans font */
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap');

/* Apply the font to the entire page */
.newsletter-form  {
    font-family: 'Josefin Sans', sans-serif;
}
/* Container styling */
.newsletter-form {
	width:100%;
  max-width: 400px;
  margin: auto;
  border-radius: 25px !important;
  background-color: white;
 
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display:flex;
	justify-content:space-between;
}
.newsletter-outer{
	width:100%;
	display:flex;
	flex-direction:column;
	align-items:center;
}
/* Label styling */
.newsletter-label {
  display: block;
  font-size: 16px;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

/* Input field styling */
.newsletter-input {
  width: 30vw;
 background-color:#ffffff00;
    border-radius: 15px !important;
  border: 1px solid #ffffff00 !important;
  
  font-size: 14px;
  box-sizing: border-box;
}
.newsletter-input:focus {
  outline: none !important;
}

/* Submit button styling */
.newsletter-submit-btn {
  padding: 10px 20px;
  border: 2px solid #C63493 ;
  border-radius: 25px !important;
  background-color: #C63493 !important;
  color: white;
  font-size: 16px;
  cursor: pointer;
  width: 200px !important;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
	margin-right:-10px;
	color:white !important;
}

.newsletter-submit-btn:hover {
  background-color: #ed3eb0 !important;
}
#response-message{
	width:100%;
	text-align:center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .newsletter-form {
  
  }

  .newsletter-submit-btn {
    padding: 10px;
  }
}
