.feedback-form{
	background: var(--color-violet);
	padding: 40px;
	display: flex;
	justify-content: space-between;
	gap: 10px;
}
.feedback-form__header,
.feedback-form__form{
	width: calc(100% - 5px);
	display: flex;
	flex-direction: column;
}
.feedback-form__title{
	font-weight: 500;
	font-size: 16px;
	line-height: 110%;
	letter-spacing: -0.02em;
	color: #d09edc;
	margin-bottom: 20px;
}
.feedback-form__subtitle{
	margin-top: auto;
	font-weight: 400;
	font-size: 45px;
	line-height: 90%;
	letter-spacing: -0.04em;
	color: #fff;
}
.feedback-form__form{
	gap: 10px;
}
.feedback-form__field{
	display: flex;
	flex-direction: column;
}
.feedback-form__input{
	background: rgba(255, 255, 255, 0.1);
	padding: 21px 28px;
	font-weight: 500;
	font-size: 22px;
	line-height: 100%;
	letter-spacing: -0.04em;
	color: #fff;
	width: 100%;
	border: none;
	border: 1px solid #fff;
}
.feedback-form__input::placeholder{
	color: #d09edc;
}
.feedback-form__agreement{
	margin-top: 15px;
}
.feedback-form__agreement label{
	position: relative;
}
.feedback-form__agreement label > input{
	position: absolute;
    z-index: -1;
    opacity: 0;
}
.feedback-form__agreement label > p{
	margin: 0;
	font-weight: 500;
	font-size: 16px;
	line-height: 110%;
	letter-spacing: -0.02em;
	user-select: none;
	color: #fff;
	padding-left: 35px;
	min-height: 20px;
	width: fit-content;
}
.feedback-form__agreement label > p::before{
	content: '';
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: -2px;
    transition: 0.3s;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 14px 11px;
}
.feedback-form__agreement label > p:hover{
	cursor: pointer;
}
.feedback-form__agreement label > p a{
	color: #fff;
}
.feedback-form__agreement label > p a::before{
	background: #fff;
}
.feedback-form__agreement label > input:checked + p::before{
	background-color: #fff;
	background-image: url('images/check.svg');
}
body .feedback-form__button{
	padding: 25px 30px;
	width: 100%;
	font-size: 22px;
	line-height: 100%;
	font-weight: 500;
}
.feedback-form__error {
    display: none;
    color: #ff0000;
    font-size: 16px;
    margin-top: 5px;
}
@media(max-width: 1600px){
    .feedback-form{
    	padding: 30px;
    }
    .feedback-form__title{
    	font-size: 15px;
    }
    .feedback-form__subtitle{
    	font-size: 36px;
    }
    .feedback-form__input{
    	font-size: 20px;
    	padding: 18px 23px;
    }
    .feedback-form__agreement {
	    margin-top: 10px;
	}
	.feedback-form__agreement label > p::before{
		width: 17px;
		height: 17px;
		background-size: 11px 9px;
	}
	.feedback-form__agreement label > p {
	    font-size: 15px;
	    padding-left: 27px;
	    min-height: 17px;
	}
	.feedback-form__error{
		font-size: 15px;
    	margin-top: 3px;
	}
	body .feedback-form__button {
	    padding: 20px 25px;
	    font-size: 20px;
	}
}
@media(max-width: 1500px){
	.feedback-form {
        padding: 20px;
    }
    .feedback-form__subtitle {
        font-size: 32px;
    }
    .feedback-form__input {
        font-size: 18px;
        padding: 14px 18px;
    }
    .feedback-form__agreement label > p{
    	font-size: 14px;
    }
    body .feedback-form__button {
        padding: 15px 25px;
        font-size: 18px;
    }
    .feedback-form__error {
        font-size: 14px;
    }
}
@media(max-width: 1349px){
	.feedback-form {
        padding: 15px;
    }
	.feedback-form__subtitle {
        font-size: 28px;
    }
    .feedback-form__input {
        font-size: 16px;
        padding: 12px 15px;
    }
    .feedback-form__agreement label > p {
        font-size: 13px;
    }
    .feedback-form__agreement {
        margin-top: 7px;
    }
    body .feedback-form__submit{
    	margin-top: 20px;
    }
    body .feedback-form__button {
        padding: 14px 20px;
        font-size: 16px;
    }
   	
}
@media(max-width: 1199px){}
@media(max-width: 991px){
	.feedback-form__subtitle {
        font-size: 24px;
    }
}
@media(max-width: 767px){
	.feedback-form__title{
		display: none;
	}
	.feedback-form{
		flex-direction: column;
		gap: 20px;
		padding: 20px 15px;
	}
}
@media(max-width: 575px){}
@media(max-width: 374px){}
