/* Newsletter block uses theme .theme-gradient + .newsletter-form from style.css */

.cc-newsletter-band .newsletter-form,
.theme-gradient .newsletter-form {
	display: flex !important;
	flex-wrap: wrap;
	align-items: flex-end !important;
	justify-content: center;
	margin-bottom: 30px;
}

.newsletter-form .mc4wp-form {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: center;
	width: 100%;
	margin: 0;
}

.newsletter-form .mc4wp-form-fields {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-end;
	justify-content: center;
	margin: 0;
	gap: 30px;
}

.newsletter-form .mc4wp-form p {
	margin: 0;
	max-width: none;
	width: auto;
	float: none;
}

.newsletter-form .mc4wp-form .axil-button {
	margin-left: 0;
	margin-top: 0;
	min-width: 150px;
}

.newsletter-form .mc4wp-response,
.newsletter-form .mc4wp-alert {
	flex-basis: 100%;
	width: 100%;
	margin-top: 12px;
	text-align: center;
	font-size: 14px;
}

.newsletter-form .mc4wp-error {
	color: #c0392b;
}

.newsletter-form .mc4wp-success {
	color: #1e7e34;
}

.newsletter-form .mc4wp-form.mc4wp-loading {
	opacity: 0.72;
}

.newsletter-form .mc4wp-form.mc4wp-loading [type="submit"] {
	cursor: wait;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.newsletter-form .mc4wp-form-fields {
		gap: 14px;
	}
}

@media only screen and (max-width: 575px) {
	.newsletter-form .mc4wp-form-fields {
		flex-direction: column;
		align-items: center;
		gap: 0;
	}

	.newsletter-form .mc4wp-form .axil-button,
	.newsletter-form .mc4wp-form input[type="submit"] {
		margin-top: 20px;
	}
}

/* Plain MC4WP submit input fallback (if button markup is not used in the plugin) */
.newsletter-form .mc4wp-form input[type="submit"] {
	height: 48px;
	padding: 0 30px;
	font-weight: 600;
	background: #F5333F;
	color: #fff;
	border: none;
	border-radius: 50px;
	box-shadow: 0 4px 12px rgba(245, 51, 63, 0.18);
	cursor: pointer;
	transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.newsletter-form .mc4wp-form input[type="submit"]:hover {
	background: #E62733;
	transform: translateY(-2px);
	box-shadow: 0 8px 18px rgba(245, 51, 63, 0.24);
}
