/**
 * Deliberately minimal: inherit the theme's typography and colours, only lay
 * things out and hide the honeypot.
 */

.leadproof-form .leadproof-field {
	margin: 0 0 1em;
}

.leadproof-form label {
	display: block;
	margin-bottom: 0.35em;
}

.leadproof-form input[type="text"],
.leadproof-form input[type="email"],
.leadproof-form input[type="tel"],
.leadproof-form select,
.leadproof-form textarea {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
}

.leadproof-form .leadproof-consent label {
	display: flex;
	align-items: flex-start;
	gap: 0.5em;
	font-size: 0.9em;
	line-height: 1.4;
}

.leadproof-form .leadproof-consent input[type="checkbox"] {
	flex: 0 0 auto;
	margin-top: 0.2em;
	width: auto;
}

.leadproof-form .leadproof-required {
	opacity: 0.7;
}

.leadproof-form .leadproof-submit[disabled] {
	opacity: 0.6;
	cursor: progress;
}

.leadproof-form .leadproof-message:empty {
	display: none;
}

.leadproof-form .leadproof-message {
	margin: 0.75em 0 0;
}

.leadproof-error {
	color: #a4231e;
}

.leadproof-success {
	color: #1a6b32;
}

/* Honeypot: hidden from people and from assistive tech, visible to naive bots. */
.leadproof-form .leadproof-hp {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
