.odoo-form-wrap,
.odoo-form-wrap * {
	box-sizing: border-box;
}

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

.odoo-form__title {
	margin: 0 0 18px;
	color: #151a21;
	font-size: 24px;
	font-weight: 800;
	line-height: 1.25;
}

.odoo-form {
	width: 100%;
	margin: 0;
}

.odoo-form__field {
	position: relative;
	margin: 0 0 10px;
}

.odoo-form__label {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.odoo-form__control {
	position: relative;
}

.odoo-form__icon {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 18px;
	display: grid;
	width: 23px;
	height: 23px;
	color: #1d232b;
	pointer-events: none;
	place-items: center;
	transform: translateY(-50%);
}

.odoo-form__icon svg {
	display: block;
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.9;
}

.odoo-form__input {
	display: block;
	width: 100% !important;
	height: 52px !important;
	min-height: 52px !important;
	padding: 0 44px 0 62px !important;
	border: 1px solid #dedede !important;
	border-radius: 14px !important;
	outline: 0;
	background-color: #f4f4f4 !important;
	box-shadow: inset 0 1px 2px rgba(18, 22, 28, .06) !important;
	color: #1d232b !important;
	font-family: inherit;
	font-size: 17px !important;
	font-weight: 650;
	line-height: 52px !important;
	transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.odoo-form__input::placeholder {
	color: #6f7379 !important;
	font-weight: 550;
	opacity: 1 !important;
}

.odoo-form__input:focus {
	border-color: #cfd3d8 !important;
	background-color: #fff !important;
	box-shadow: 0 0 0 3px rgba(237, 28, 36, .11), inset 0 1px 2px rgba(18, 22, 28, .06) !important;
}

.odoo-form__input[aria-invalid="true"] {
	border-color: #ed1c24 !important;
	box-shadow: 0 0 0 3px rgba(237, 28, 36, .1) !important;
}

.odoo-form__select {
	-webkit-appearance: none;
	appearance: none;
	background-image:
		linear-gradient(45deg, transparent 50%, #6f7379 50%),
		linear-gradient(135deg, #6f7379 50%, transparent 50%) !important;
	background-position:
		calc(100% - 21px) 22px,
		calc(100% - 16px) 22px !important;
	background-repeat: no-repeat !important;
	background-size: 5px 5px, 5px 5px !important;
	cursor: pointer;
}

.odoo-form__select:invalid {
	color: #6f7379 !important;
	font-weight: 550;
}

.odoo-form__field-error {
	display: none;
	margin: 5px 4px 0;
	color: #d81720;
	font-size: 13px;
	font-weight: 750;
	line-height: 1.35;
}

.odoo-form__field-error:not(:empty) {
	display: block;
}

.odoo-form__turnstile {
	margin: 14px 0;
}

.odoo-form__status {
	display: none;
	margin: 12px 0;
	padding: 12px 14px;
	border: 1px solid transparent;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 650;
	line-height: 1.5;
}

.odoo-form__status.is-visible {
	display: block;
}

.odoo-form__status.is-success {
	border-color: #a7d9b8;
	background: #f0faf3;
	color: #176132;
}

.odoo-form__status.is-error {
	border-color: #f2b4b7;
	background: #fff4f4;
	color: #a20f16;
}

.odoo-form__status strong {
	display: block;
	margin-top: 2px;
	color: inherit;
}

.odoo-form__submit {
	position: relative;
	display: block;
	width: 100%;
	min-height: 52px;
	margin: 10px 0 0;
	padding: 0 60px 0 24px;
	border: 0 !important;
	border-radius: 14px !important;
	background: var(--odoo-red, #ed1c24) !important;
	box-shadow: 0 10px 22px rgba(237, 28, 36, .22);
	color: #fff !important;
	cursor: pointer;
	font-family: inherit;
	font-size: 20px;
	font-weight: 900;
	line-height: 52px;
	text-align: center;
	white-space: nowrap;
	transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.odoo-form__submit::after {
	content: "→";
	position: absolute;
	top: 50%;
	right: 20px;
	width: 24px;
	height: 24px;
	font-size: 25px;
	font-weight: 500;
	line-height: 22px;
	transform: translateY(-50%);
}

.odoo-form__submit:hover,
.odoo-form__submit:focus-visible {
	background: #d81720 !important;
	box-shadow: 0 12px 26px rgba(237, 28, 36, .3);
	color: #fff !important;
}

.odoo-form__submit:focus-visible {
	outline: 3px solid rgba(237, 28, 36, .24);
	outline-offset: 3px;
}

.odoo-form__submit:active {
	transform: translateY(1px);
}

.odoo-form__submit:disabled {
	cursor: wait;
	opacity: .78;
	transform: none;
}

.odoo-form__submit.is-loading::after {
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, .5);
	border-top-color: #fff;
	border-radius: 50%;
	font-size: 0;
	animation: odoo-spin .75s linear infinite;
}

.odoo-form__honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.odoo-form--form-2 {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px 18px;
}

.odoo-form--form-2 .odoo-form__field {
	margin: 0;
}

.odoo-form--form-2 [data-odoo-field="company_name"] {
	grid-column: 1;
	grid-row: 1;
}

.odoo-form--form-2 [data-odoo-field="monthly_orders"] {
	grid-column: 2;
	grid-row: 1;
}

.odoo-form--form-2 [data-odoo-field="phone"] {
	grid-column: 1;
	grid-row: 2;
}

.odoo-form--form-2 [data-odoo-field="product_type"] {
	grid-column: 2;
	grid-row: 2;
}

.odoo-form--form-2 [data-odoo-field="email"] {
	grid-column: 1;
	grid-row: 3;
}

.odoo-form--form-2 .odoo-form__icon {
	display: none;
}

.odoo-form--form-2 .odoo-form__input {
	height: 52px !important;
	min-height: 52px !important;
	padding: 0 42px 0 17px !important;
	border-color: #dce1e8 !important;
	border-radius: 8px !important;
	background-color: #fff !important;
	box-shadow: 0 4px 10px rgba(19, 24, 31, .04) !important;
	color: #222831 !important;
	font-size: 15px !important;
	font-weight: 700;
	line-height: 52px !important;
}

.odoo-form--form-2 .odoo-form__input::placeholder {
	color: #6d737d !important;
	font-weight: 600;
}

.odoo-form--form-2 .odoo-form__input:focus {
	border-color: rgba(237, 28, 36, .72) !important;
	box-shadow: 0 0 0 4px rgba(237, 28, 36, .1) !important;
}

.odoo-form--form-2 .odoo-form__turnstile,
.odoo-form--form-2 .odoo-form__status,
.odoo-form--form-2 .odoo-form__submit {
	grid-column: 1 / -1;
}

.odoo-form--form-2 .odoo-form__turnstile,
.odoo-form--form-2 .odoo-form__status {
	margin: 2px 0;
}

.odoo-form--form-2 .odoo-form__submit {
	min-height: 56px;
	margin: 6px 0 0;
	padding: 0 66px 0 24px;
	border-radius: 8px !important;
	background: linear-gradient(180deg, #e5372d, #c92218) !important;
	box-shadow: 0 12px 26px rgba(201, 34, 24, .22);
	font-family: "Prompt", sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 56px;
}

.odoo-form--form-2 .odoo-form__submit::after {
	right: 17px;
	display: grid;
	width: 32px;
	height: 32px;
	border: 1.5px solid rgba(255, 255, 255, .72);
	border-radius: 50%;
	background: rgba(255, 255, 255, .16);
	font-size: 20px;
	line-height: 1;
	place-items: center;
}

.odoo-form--form-2 .odoo-form__submit.is-loading::after {
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, .5);
	border-top-color: #fff;
	background: transparent;
	font-size: 0;
}

.odoo-form-wrap--form-3 {
	margin-top: 17px;
}

.odoo-form--form-3 {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	column-gap: 18px;
}

.odoo-form--form-3 .odoo-form__field {
	margin: 0;
}

.odoo-form--form-3 .odoo-form__input {
	height: 58px !important;
	min-height: 58px !important;
	padding: 0 16px 0 52px !important;
	border: 2px solid #e5e5e8 !important;
	border-radius: 14px !important;
	background-color: #f8f8f9 !important;
	box-shadow: inset 0 1px 3px rgba(17, 22, 28, .08) !important;
	color: #202630 !important;
	font-size: 15px !important;
	font-weight: 750;
	line-height: 58px !important;
}

.odoo-form--form-3 .odoo-form__input::placeholder {
	color: #7a7d83 !important;
	font-weight: 700;
}

.odoo-form--form-3 .odoo-form__input:focus {
	border-color: #d9dce1 !important;
	box-shadow: 0 0 0 3px rgba(237, 28, 36, .12), inset 0 1px 3px rgba(17, 22, 28, .08) !important;
}

.odoo-form--form-3 .odoo-form__turnstile,
.odoo-form--form-3 .odoo-form__status,
.odoo-form--form-3 .odoo-form__submit {
	grid-column: 1 / -1;
}

.odoo-form--form-3 .odoo-form__submit {
	min-height: 62px;
	margin: 24px 0 0;
	padding: 0 17px;
	border-radius: 14px !important;
	box-shadow: 0 14px 28px rgba(237, 28, 36, .22);
	font-size: clamp(18px, 1.6vw, 24px);
	font-weight: 950;
	line-height: 62px;
}

.odoo-form--form-3 .odoo-form__submit::after {
	display: none;
}

.odoo-form--form-3 .odoo-form__submit.is-loading::after {
	display: block;
}

@keyframes odoo-spin {
	to {
		transform: translateY(-50%) rotate(360deg);
	}
}

@media (max-width: 767px) {
	.odoo-form--form-2 {
		grid-template-columns: 1fr;
	}

	.odoo-form--form-3 {
		grid-template-columns: 1fr;
		row-gap: 12px;
	}

	.odoo-form--form-3 .odoo-form__input {
		height: 54px !important;
		min-height: 54px !important;
		line-height: 54px !important;
	}

	.odoo-form--form-3 .odoo-form__submit {
		min-height: 58px;
		white-space: normal;
	}

	.odoo-form--form-2 [data-odoo-field="company_name"],
	.odoo-form--form-2 [data-odoo-field="phone"],
	.odoo-form--form-2 [data-odoo-field="email"],
	.odoo-form--form-2 [data-odoo-field="monthly_orders"],
	.odoo-form--form-2 [data-odoo-field="product_type"] {
		grid-column: 1;
	}

	.odoo-form--form-2 [data-odoo-field="company_name"] {
		grid-row: 1;
	}

	.odoo-form--form-2 [data-odoo-field="phone"] {
		grid-row: 2;
	}

	.odoo-form--form-2 [data-odoo-field="email"] {
		grid-row: 3;
	}

	.odoo-form--form-2 [data-odoo-field="monthly_orders"] {
		grid-row: 4;
	}

	.odoo-form--form-2 [data-odoo-field="product_type"] {
		grid-row: 5;
	}

	.odoo-form__input,
	.odoo-form__input::placeholder {
		font-size: 15.5px !important;
	}

	.odoo-form__submit {
		font-size: 17px;
	}
}

@media (max-width: 425px) {
	.odoo-form--form-3 .odoo-form__input {
		height: 52px !important;
		min-height: 52px !important;
		line-height: 52px !important;
	}
}

@media (max-width: 374px) {
	.odoo-form__input,
	.odoo-form__input::placeholder {
		font-size: 15px !important;
	}

	.odoo-form__submit {
		font-size: 16px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.odoo-form__input,
	.odoo-form__submit {
		transition: none;
	}
}
