.newsletter-wrapper {
	width: 100%;
	max-width: 560px;
	margin: 0 auto;
}

.newsletter-form {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	justify-content: center;
	gap: 12px;
	width: 100%;
}

.newsletter-form #ml-email-input {
	flex: 1 1 auto;
	min-width: 0;
	width: auto !important;
	max-width: none;
	height: 48px;
	margin: 0;
	padding: 0 20px;
	border: 1px solid rgba(239, 231, 218, 0.72);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: none;
	color: #efe7da;
	font-family: Poppins, sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.2;
	transition: border-color 0.2s ease, background-color 0.2s ease;
}

.newsletter-form #ml-email-input::placeholder {
	color: rgba(239, 231, 218, 0.72);
	opacity: 1;
}

.newsletter-form #ml-email-input:focus {
	outline: none;
	border-color: #efe7da;
	background: rgba(255, 255, 255, 0.16);
	box-shadow: 0 0 0 2px rgba(239, 231, 218, 0.18);
	color: #efe7da;
}

.newsletter-form #ml-submit-btn {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 48px;
	margin: 0;
	padding: 0 28px;
	border: 1px solid #efe7da;
	border-radius: 999px;
	background: #874d9d;
	box-shadow: none;
	color: #efe7da;
	font-family: Poppins, sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.newsletter-form #ml-submit-btn:hover,
.newsletter-form #ml-submit-btn:focus {
	background: #9a5cb0;
	border-color: #fff;
	color: #efe7da;
}

.newsletter-form #ml-submit-btn:disabled {
	opacity: 0.72;
	cursor: wait;
}

.newsletter-wrapper #ml-message {
	display: none;
	margin-top: 12px;
	color: #efe7da;
	font-family: Poppins, sans-serif;
	font-size: 15px;
	line-height: 1.4;
	text-align: center;
}

@media (max-width: 540px) {
	.newsletter-form {
		flex-direction: column;
		align-items: stretch;
		gap: 10px;
	}

	.newsletter-form #ml-email-input,
	.newsletter-form #ml-submit-btn {
		width: 100% !important;
	}

	.newsletter-form #ml-submit-btn {
		min-height: 48px;
	}
}
