/**
 * BTM Mautic Capture — Home Page Email Capture Form
 *
 * Styles the inline email opt-in form on the home page.
 * Button styles (background, color, font) are intentionally omitted so
 * the site's global button styles (green gradient, Oswald, uppercase) apply.
 */

/* ---- Form layout: constrained width, input stacked above button ---- */

.inline-email-opt-in-form {
	padding-top: 8px;
}

.btm-mautic-capture-form {
	max-width: 380px;
	margin-left: auto;
	margin-right: auto;
}

.btm-mautic-field {
	margin-bottom: 10px;
}

.btm-mautic-field input[type="email"] {
	width: 100%;
	padding: 12px 14px;
	font-size: 16px;
	border: 1px solid #ced4da;
	border-radius: 4px;
	box-sizing: border-box;
	line-height: 1.4;
}

.btm-mautic-field input[type="email"]:focus {
	border-color: #6c9e1b;
	outline: none;
	box-shadow: 0 0 0 2px rgba(108, 158, 27, 0.2);
}

.btm-mautic-submit {
	display: block !important;   /* override theme: .button { display: inline-block } */
	width: 100% !important;      /* needs block display to take effect */
	padding: 14px 20px;
	font-size: 18px !important;
	font-weight: bold !important;
	cursor: pointer;
	box-sizing: border-box;
	margin-bottom: 6px;
}

.btm-mautic-submit:disabled,
.btm-mautic-submit[disabled] {
	opacity: 0.55;
	cursor: not-allowed;
	pointer-events: none;
}

/* ---- Success message ---- */

.btm-mautic-success {
	margin-top: 12px;
	padding: 14px 18px;
	background: #d4edda;
	border: 1px solid #c3e6cb;
	border-radius: 4px;
	color: #155724;
	font-size: 16px;
}

/* Higher specificity to override theme paragraph margins */
.inline-email-opt-in-form .btm-mautic-success p {
	margin: 0;
	padding: 0;
}

/* ---- Error message ---- */

.btm-mautic-error {
	margin-top: 10px;
	padding: 10px 14px;
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	border-radius: 4px;
	color: #721c24;
	font-size: 14px;
}
