.form__container{
	max-width: 600px;
	width: 100%;
	margin: 0 auto;
}
.form__header h3{
	font-size: 37px;
	font-weight: 400;
	margin-bottom: 12px;
	line-height: 1.3;
}
.form__header p{
	font-size: 21px;
}
.form__inputs-elem{
	margin: 12px 0px;
}
.form__inputs-elem label{
	font-size: 16px;
}
input[type=text]{
	border: 2px solid #6B6D70;
	color: #000000;
	padding: 16px 10px;
	border-radius: 4px;
	font-size: 16px;
	width: 100%;
	max-width: 100%;
	margin: 4px 0px 0px 0px;
}
.form__accepts{
	margin: 12px 0px 16px 0px;
}
.form__accepts label{
	display: flex;
	gap: 8px;
	align-items: flex-start;
}
.form__accepts-text{
	font-size: 16px;
	line-height: 1.5;
}
.form__accepts-text a{
	text-decoration: underline;
}
input[type="checkbox"]{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	outline: 0px;
	border: 2px solid #6B6D70;
	width: 28px;
	min-width: 28px;
	height: 28px;
	min-height: 28px;
	background-color: #ffffff;
	border-radius: 4px;
	margin: 0px;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-ms-progress-appearance: none;
}
input[type="checkbox"]:before{
	content: "";
	width: 20px;
	height: 20px;
	background-color: #000000;
	transform: scale(0);
	transition: 120ms transform ease-in-out;
}
input[type="checkbox"]:checked:before{
	transform: scale(1);
}
.text-error{
	font-size: 12px;
	color: red;
}

@media(min-width: 1920px){
	.form__container {
		max-width: 31.25vw;
	}
	input[type=text] {
		padding: 0.833vw 0.521vw;
		font-size: 0.833vw;
	}
	.form__inputs-elem label {
		font-size: 0.833vw;
	}
	.form__accepts-text {
		font-size: 0.833vw;
	}
	.form__header h3 {
		font-size: 1.927vw;
		margin-bottom: 0.625vw;
	}
	.form__header p {
		font-size: 1.094vw;
	}
	input[type="checkbox"] {
		width: 1.458vw;
		height: 1.458vw;
	}
	input[type="checkbox"]:before {
		width: 1.042vw;
		height: 1.042vw;
	}
}

@media(max-width: 600px){
	.form__header h3{
		font-size: 26px;
	}
	.form__header p{
		font-size: 18px;
	}
}