.b-price-form {
	width: 100%;
	padding: 36px;
	background: #ffffff;
	border-radius: 30px;
}

.b-price-form .price-form__fields {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.b-price-form .price-form__field--input input[type="text"],
.b-price-form .price-form__field--input input[type="tel"],
.b-price-form .price-form__field--input input[type="email"],
.b-price-form .price-form__field--input input[type="url"],
.b-price-form .price-form__field--input input[type="number"],
.b-price-form .price-form__field--input textarea,
.b-price-form .price-form__field--captcha input[type="text"] {
	width: 100%;
	height: 52px;
	padding-inline: 24px;
	border: 0;
	border-radius: 50px;
	box-shadow: 0 0 4px rgba(183, 182, 179, 0.7);
	background: #ffffff;
	color: rgba(0, 0, 0, 0.9);
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.22;
	outline: none;
}

.b-price-form .price-form__field--input textarea {
	min-height: 120px;
	border-radius: 24px;
	resize: vertical;
}

.b-price-form .price-form__field--input input::placeholder,
.b-price-form .price-form__field--input textarea::placeholder,
.b-price-form .price-form__field--captcha input::placeholder {
	color: rgba(0, 0, 0, 0.6);
}

.b-price-form .price-form__field--input input:focus,
.b-price-form .price-form__field--input textarea:focus,
.b-price-form .price-form__field--captcha input:focus {
	box-shadow: 0 0 0 2px rgba(73, 171, 52, 0.25), 0 0 4px rgba(183, 182, 179, 0.7);
}

.b-price-form .price-form__footer {
	margin-top: 12px;
}

.b-price-form .price-form__submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 52px;
	padding-inline: 24px;
	border: 0;
	border-radius: 50px;
	background: #49ab34;
	color: #f3fff7;
	font-family: "Montserrat", sans-serif;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.22;
	transition: background-color 0.2s ease;
}

.b-price-form .price-form__submit:hover {
	background: #3e962d;
}

.b-price-form .price-form__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

/* .b-price-form .price-form__field--checkbox {
	margin-top: 2px;
} */

.b-price-form .price-form__checkbox-label {
	display: flex;
	align-items: flex-start;
	column-gap: 10px;
	margin: 0;
	cursor: pointer;
}

.b-price-form .price-form__field--checkbox input[type="checkbox"],
.b-price-form .price-form__field--checkbox input[type="radio"] {
	margin-top: 1px;
	width: 18px;
	height: 18px;
	flex: 0 0 18px;
	accent-color: #248127;
}

.b-price-form .price-form__checkbox-text {
	flex: 1;
	color: rgba(0, 0, 0, 0.6);
	font-family: "Montserrat", sans-serif;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;

	a:link,
	a:visited {
		color: inherit;
		text-decoration: underline;
	}
}

.b-price-form .price-form__field-error,
.b-price-form .price-form__message {
	margin-bottom: 8px;
	font-size: 13px;
	line-height: 1.3;
}

.b-price-form .price-form__field-error,
.b-price-form .price-form__message--error {
	color: #c62828;
}

.b-price-form .price-form__message--success {
	color: #248127;
	font-size: 16px;
	font-weight: 500;
	margin: 0;
	text-align: center;
}

.b-price-form .price-form__field--captcha {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.b-price-form .price-form__captcha-image img {
	display: block;
	max-width: 180px;
	height: auto;
}

@media (max-width: 767px) {
	.b-price-form {
		padding: 20px;
		border-radius: 24px;
	}

	.b-price-form .price-form__submit {
		font-size: 18px;
	}
}