.form {
	padding: 24px 16px;
	margin-inline: -16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 24px 16px;
	gap: 12px;
	margin-bottom: 20px;
	background: #ffffff;
	box-shadow: 0px 0px 6px 1px rgba(0, 0, 0, 0.25);
	button[type='submit'] {
		display: flex;
		justify-content: center;
		align-items: center;
		padding: 8px 24px;
		gap: 10px;
		height: 42px;
		background: #c0392b;
		border-radius: 6px;
		width: 100%;
		font-weight: 600;
		font-size: 17px;
		text-align: center;
		text-transform: uppercase;
		color: #ffffff;
	}
}
.form-head {
}
.form-text {
	font-size: 18px;
	line-height: 106%;

	text-align: center;
	color: #2d2d2d;
}
.phone-eror-mess{
  color: red;
}
.field-group {
	font-family: 'Inter';
	width: 100%;
	label {
		display: block;
		padding: 0 12px 8px;
		line-height: 1.25;

		span {
			font-size: 18px;
			line-height: 133%;
			color: red;
		}
	}

	input {
		width: 100%;
		padding: 12px;
		height: 50px;
		border: 1px solid #000;

		transition: 0.15s ease-in-out;

		&:focus {
			border-color: #00467f;
		}

		&::placeholder {
			color: rgba(17, 17, 17, 0.5);
		}
	}
}
.form-checkbox {
	margin-top: 12px;
	position: relative;
	font-size: 12px;
	line-height: 15px;
	color: #737373;
	width: 100%;
	& > span {
		position: relative;
		display: block;
		padding-left: 30px;
		&::before,
		&::after {
			position: absolute;
			content: '';
			top: 50%;
		}
		&::before {
			left: 0;
			translate: 0 -50%;
			width: 20px;
			height: 20px;
			border: 2px solid #00467f;
		}
		&::after {
			border-bottom: 2px solid #00467f;
			border-right: 2px solid #00467f;
			width: 5px;
			height: 10px;
			left: 10px;
			translate: -50% calc(-50% - 1px);
			rotate: 45deg;
			opacity: 0;
		}
	}
}
.form-checkbox input:checked + span::after {
	opacity: 1;
}
