/* WT3 Lead Capture — Form Styles (matches reference design) */

.wt3-lc-wrapper {
	max-width: 420px;
	width: 100%;
	box-sizing: border-box;
}

.wt3-lc-wrapper * {
	box-sizing: border-box;
}

.wt3-lc-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.wt3-lc-intro {
	text-align: center;
	margin-bottom: 22px;
}

.wt3-lc-heading {
	font-family: Georgia, "Times New Roman", serif;
	font-size: 26px;
	font-weight: 700;
	line-height: 1.25;
	color: #1a1a1a;
	margin: 0 0 14px;
	text-transform: uppercase;
}

.wt3-lc-subtext {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	color: #444444;
	margin: 0;
}

.wt3-lc-field {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.wt3-lc-field label {
	font-size: 15px;
	color: #1a1a1a;
	font-weight: 400;
}

.wt3-lc-required {
	color: #1a1a1a;
}

.wt3-lc-input {
	width: 100%;
	height: 42px;
	padding: 8px 12px;
	font-size: 15px;
	border: 1.5px solid #000000;
	border-radius: 2px;
	background: #ffffff;
	color: #1a1a1a;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wt3-lc-input:focus {
	outline: none;
	border-color: #000000;
	box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.wt3-lc-input.wt3-lc-input-error {
	border-color: #d63638;
}

/* Honeypot - hidden from real users */
.wt3-lc-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.wt3-lc-submit {
	width: 100%;
	height: 46px;
	background-color: #ffff00;
	border: none;
	border-radius: 2px;
	color: #1a1a1a;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.15s ease, opacity 0.15s ease;
}

.wt3-lc-submit:hover {
	background-color: #f0f000;
}

.wt3-lc-submit:active {
	background-color: #e0e000;
}

.wt3-lc-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.wt3-lc-message {
	font-size: 14px;
	display: none;
	padding: 10px 12px;
	border-radius: 3px;
}

.wt3-lc-message.wt3-lc-success {
	display: block;
	background: #edfaef;
	color: #1e7e34;
	border: 1px solid #b7e4c7;
}

.wt3-lc-message.wt3-lc-error {
	display: block;
	background: #fdeeee;
	color: #c0392b;
	border: 1px solid #f3c6c6;
}

.wt3-lc-field-error {
	font-size: 13px;
	color: #d63638;
	margin-top: 2px;
}
