.cif-form-wrap {
	width: 100%;
	margin: 0 auto;
}

.cif-form {
	display: block;
	width: 100%;
}

.cif-form-row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	width: 100%;
}

.cif-field {
	margin: 0 0 1rem;
	width: 100%;
}

.cif-field label {
	display: block;
	margin-bottom: 0.4rem;
}

.cif-field input {
	width: 100%;
}

.cif-consent {
	margin: 0 0 1rem;
}

.cif-consent label {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
}

.cif-consent input[type='checkbox'] {
	margin-top: 0.25rem;
	flex: 0 0 auto;
}

.cif-honeypot {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
}

.cif-actions {
	margin: 0;
	width: 100%;
	text-align: center;
}

.cif-actions button {
	display: block;
	width: 100%;
	margin: 0 auto;
}

.cif-actions button[disabled] {
	opacity: 0.7;
	cursor: wait;
}

@media (max-width: 767px) {
	.cif-form-row {
		grid-template-columns: 1fr;
		gap: 0;
	}
}
