.esc-subscription-form {
	max-width: 480px;
	margin: 20px auto;
}

.esc-form-title {
	margin: 0 0 12px;
	font-size: 1em;
	font-weight: 600;
}

.esc-form-fields {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.esc-email-input {
	flex: 1;
	min-width: 150px;
	box-sizing: border-box;
	height: 42px !important;
	padding: 0 14px !important;
	margin: 0;
	border: 1px solid #898e96;
	border-radius: 6px;
	font-size: 15px;
	line-height: 40px;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.esc-email-input:focus {
	outline: none;
	border-color: #4f7cff;
	box-shadow: 0 0 0 3px rgba(79, 124, 255, 0.15);
}

.esc-submit-button {
	box-sizing: border-box;
	height: 42px !important;
	padding: 0 16px !important;
	border: none;
	border-radius: 6px;
	background: #4f7cff;
	color: #fff;
	font-size: 15px !important;
	font-weight: 500;
	line-height: 42px;
	cursor: pointer;
	transition: background 0.2s ease;
}

.esc-submit-button:hover:not(:disabled) {
	background: #3d6ae8;
}

.esc-submit-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.esc-message {
	margin: 8px 0 0;
	font-size: 14px;
	min-height: 20px;
}

.esc-message.is-success {
	color: #03a833;
}

.esc-message.is-error {
	color: #ff1d1d;
}
