.insurance-callback {
	max-width: 480px;
	margin: 40px auto;
	padding: 32px;
	background: #fff;
	border: 1px solid #e6e6e6;
	border-radius: 12px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
	font-family: Arial, Helvetica, sans-serif;
	box-sizing: border-box;
}

.insurance-callback *,
.insurance-callback *::before,
.insurance-callback *::after {
	box-sizing: border-box;
}

.insurance-callback__title {
	margin: 0 0 8px;
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
}

.insurance-callback__subtitle {
	margin: 0 0 24px;
	font-size: 14px;
	color: #6b6b6b;
}

.insurance-field {
	margin-bottom: 18px;
}

/* Honeypot-поле: скрыто от людей, но доступно ботам-автозаполнителям */
.insurance-field--honeypot {
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
	opacity: 0;
	pointer-events: none;
}

.insurance-field__label {
	display: block;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.insurance-field__input {
	width: 100%;
	height: 44px;
	padding: 0 14px;
	font-size: 15px;
	color: #1a1a1a;
	background: #fff;
	border: 1px solid #d0d0d0;
	border-radius: 8px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.insurance-field__input::placeholder {
	color: #a0a0a0;
}

.insurance-field__input:focus {
	border-color: #0a67d3;
	box-shadow: 0 0 0 3px rgba(10, 103, 211, 0.15);
}

.insurance-field__select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M1.41 0L6 4.59 10.59 0 12 1.42l-6 6-6-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	padding-right: 38px;
	cursor: pointer;
}

.insurance-field__input.is-invalid {
	border-color: #e02424;
}

.insurance-field__input.is-invalid:focus {
	box-shadow: 0 0 0 3px rgba(224, 36, 36, 0.15);
}

.insurance-field__error {
	display: none;
	margin-top: 6px;
	font-size: 13px;
	color: #e02424;
}

.insurance-field__error.is-visible {
	display: block;
}

.insurance-callback__submit {
	width: 100%;
	height: 48px;
	margin-top: 4px;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	background: #0a67d3;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.insurance-callback__submit:hover {
	background: #0854ac;
}

.insurance-callback__submit:disabled {
	background: #9bbfe6;
	cursor: not-allowed;
}

.insurance-callback__message {
	margin: 16px 0 0;
	font-size: 14px;
	text-align: center;
}

.insurance-callback__message.is-success {
	color: #1a8a3a;
}

.insurance-callback__message.is-error {
	color: #e02424;
}
