.ezora-form {
	max-width: 780px;
	padding: clamp(22px, 4vw, 42px);
	border: 1px solid #dedfd6;
	border-radius: 24px;
	background: #fffdf8;
	box-shadow: 0 22px 60px rgba(45, 52, 43, .08);
}

.ezora-form__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.ezora-form label span {
	display: block;
	margin-bottom: 8px;
	color: #30332d;
	font-weight: 650;
}

.ezora-form input,
.ezora-form select,
.ezora-form textarea {
	box-sizing: border-box;
	width: 100%;
	padding: 13px 14px;
	border: 1px solid #cfd2c7;
	border-radius: 12px;
	background: #fff;
	color: #242821;
	font: inherit;
}

.ezora-form input:focus,
.ezora-form select:focus,
.ezora-form textarea:focus {
	border-color: #667657;
	outline: 3px solid rgba(102, 118, 87, .17);
}

.ezora-form__wide {
	grid-column: 1 / -1;
}

.ezora-choice-group {
	min-width: 0;
	margin: 2px 0;
	padding: 0;
	border: 0;
}

.ezora-choice-group legend {
	margin-bottom: 10px;
	color: #30332d;
	font-weight: 650;
}

.ezora-choice-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
}

.ezora-choice {
	position: relative;
	cursor: pointer;
}

.ezora-choice input {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
}

.ezora-choice span {
	display: inline-flex !important;
	align-items: center;
	min-height: 40px;
	margin: 0 !important;
	padding: 8px 13px;
	border: 1px solid #cfd2c7;
	border-radius: 999px;
	background: #fff;
	font-size: .92rem;
	font-weight: 550 !important;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}

.ezora-choice input:checked + span {
	border-color: #667657;
	background: #667657;
	color: #fff;
}

.ezora-choice input:focus-visible + span {
	outline: 3px solid rgba(102, 118, 87, .24);
	outline-offset: 2px;
}

.ezora-form__consent {
	display: grid;
	grid-template-columns: 20px 1fr;
	gap: 10px;
	margin: 24px 0;
}

.ezora-form__consent input {
	width: 18px;
	margin-top: 3px;
}

.ezora-form__submit {
	padding: 14px 22px;
	border: 0;
	border-radius: 12px;
	background: #c96035;
	color: #fff;
	font: inherit;
	font-weight: 750;
	cursor: pointer;
}

.ezora-form__submit:hover {
	background: #a94d2a;
}

.ezora-form__note,
.ezora-form small {
	color: #6a7065;
}

.ezora-form-message {
	max-width: 760px;
	padding: 18px 22px;
	border-radius: 14px;
}

.ezora-form-message--success {
	border: 1px solid #b8c8ad;
	background: #eef5e9;
	color: #35452d;
}

.ezora-form-message--error {
	margin-bottom: 18px;
	border: 1px solid #e1b5a6;
	background: #fff1eb;
	color: #78351e;
}

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

@media (max-width: 680px) {
	.ezora-form__grid {
		grid-template-columns: 1fr;
	}

	.ezora-form__wide {
		grid-column: auto;
	}
}
