.header_callback_form {
	width: 100%;
}

.header_callback_form__field {
	margin-bottom: 16px;
}

.header_callback_form__field--surname {
	display: none !important;
}

.header_callback_form__label {
	display: block;
	width: 100%;
}

.header_callback_form__caption {
	display: block;
	margin-bottom: 6px;
	color: #222222;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.3;
}

.header_callback_form__required {
	color: #ff9f1a;
}

.header_callback_form input[type="text"],
.header_callback_form input[type="tel"],
.header_callback_form input[type="email"],
.header_callback_form textarea {
	display: block;
	width: 100%;
	min-height: 46px;
	padding: 10px 14px;
	border: 1px solid #d8d8d8;
	border-radius: 4px;
	background: #ffffff;
	box-sizing: border-box;
	color: #222222;
	font-size: 15px;
	line-height: 1.3;
	outline: none;
}

.header_callback_form input[type="text"]:focus,
.header_callback_form input[type="tel"]:focus,
.header_callback_form input[type="email"]:focus,
.header_callback_form textarea:focus {
	border-color: #005b4f;
}

.header_callback_form__privacy {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}

.header_callback_form__privacy-checkbox {
	flex: 0 0 auto;
	padding-top: 2px;
}

.header_callback_form__privacy-checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
	margin: 0;
	cursor: pointer;
}

.header_callback_form__privacy-checkbox label {
	display: none;
}

.header_callback_form__privacy-text {
	display: block;
	color: #555555;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	cursor: pointer;
}

.header_callback_form__privacy-text a {
	color: #005b4f;
	text-decoration: underline;
}

.header_callback_form__privacy-text a:hover {
	color: #ff9f1a;
}

.header_callback_form__footer {
	margin-top: 20px;
}

.header_callback_form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 46px;
	padding: 0 24px;
	background: #ff9f1a;
	border: 0;
	border-radius: 4px;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease;
}

.header_callback_form__submit:hover {
	background: #ff8c00;
}

.header_callback_form__errors {
	margin-bottom: 16px;
	padding: 12px 14px;
	border-radius: 4px;
	background: #fff0f0;
	color: #b00020;
	font-size: 14px;
	line-height: 1.4;
}

.header_callback_form__success {
	padding: 18px 20px;
	border-radius: 4px;
	background: #f0fff8;
	color: #005b4f;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4;
}