.lotos-contact-form {
	width: 100%;
	max-width: 760px;
	padding: 28px;
	border: 1px solid #d7e7ef;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 16px 38px rgba(6, 63, 105, .08);
	color: #123044;
}

.lotos-contact-form__header {
	margin-bottom: 22px;
}

.lotos-contact-form__header h2 {
	margin: 0;
	color: #063f69;
	font-size: clamp(1.65rem, 3vw, 2.35rem);
	line-height: 1.12;
}

.lotos-contact-form__header p {
	margin: 10px 0 0;
	color: #5e7180;
}

.lotos-contact-form__notice {
	margin-bottom: 18px;
	padding: 12px 14px;
	border-radius: 8px;
	font-weight: 700;
}

.lotos-contact-form__notice--success {
	background: #e9f8ef;
	color: #116b35;
}

.lotos-contact-form__notice--error {
	background: #fff0f0;
	color: #a81f1f;
}

.lotos-contact-form__trap {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

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

.lotos-contact-form label {
	display: grid;
	gap: 7px;
	margin-bottom: 14px;
	font-weight: 750;
}

.lotos-contact-form input,
.lotos-contact-form select,
.lotos-contact-form textarea {
	width: 100%;
	min-height: 46px;
	padding: 11px 13px;
	border: 1px solid #d7e7ef;
	border-radius: 8px;
	background: #ffffff;
	color: #123044;
	font: inherit;
	font-weight: 500;
}

.lotos-contact-form textarea {
	resize: vertical;
}

.lotos-contact-form input:focus,
.lotos-contact-form select:focus,
.lotos-contact-form textarea:focus {
	border-color: #2479a8;
	box-shadow: 0 0 0 3px rgba(130, 186, 221, .28);
	outline: none;
}

.lotos-contact-form__consent {
	grid-template-columns: auto minmax(0, 1fr);
	align-items: start;
	gap: 10px;
	color: #5e7180;
	font-size: .94rem;
	font-weight: 600;
}

.lotos-contact-form__consent input {
	width: 18px;
	min-height: 18px;
	margin-top: 4px;
}

.lotos-contact-form__captcha {
	min-height: 78px;
	margin: 4px 0 18px;
	overflow: hidden;
}

.lotos-contact-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 12px 24px;
	border: 0;
	border-radius: 8px;
	background: #063f69;
	color: #ffffff;
	font: inherit;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 12px 25px rgba(6, 63, 105, .2);
}

.lotos-contact-form button:hover {
	background: #07527f;
}

.lotos-contact-form button:disabled {
	background: #8b9aa4;
	cursor: not-allowed;
	box-shadow: none;
	opacity: .7;
}

@media (max-width: 640px) {
	.lotos-contact-form {
		padding: 20px;
	}

	.lotos-contact-form__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.lotos-contact-form button {
		width: 100%;
	}
}

@media (max-width: 380px) {
	.lotos-contact-form__captcha {
		height: 70px;
	}

	.lotos-contact-form__captcha .g-recaptcha {
		transform: scale(.86);
		transform-origin: left top;
	}
}
