#form-block .item_form {
	background-color: #005FF9;
	position: relative;
	padding: 60px;
	border-radius: 5px;
	z-index: 0;
}
#form-block .item_form:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: url(images/bg.svg);
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	height: 100%;
	z-index: -2;
}
#form-block h2, 
#form-block h2 {
	margin-top: 0;
	margin-bottom: 10px;
	color: white;
}
#form-block div {
	color: white;
}
#form-block .block_title {
	max-width: 520px;
	width: 100%;
}
#form-block .form {
	max-width: 520px;
	width: 100%;
	flex-direction: column;
	row-gap: 30px;
}
#form-block .form .info {
	gap: 30px;
}
#form-block .form .info > * {
	width: 49%;
}
#form-block input,
#form-block textarea {
	resize: unset;
	width: 100%;
	background: #FFFFFF;
	border-radius: 10px;
	outline: none;
	border: none;
	padding: 15px 30px;
}
#form-block input::placeholder,
#form-block textarea::placeholder {
		color: black;
}
#form-block textarea {
	max-height: 130px;
	height: 100%;
}
#form-block .send {
	justify-content: space-between;
	align-items: center;
}
#form-block .spp-input {
	max-width: 305px;
	width: 100%;
	font-size: 14px;	
}
#form-block .spp-input a {
	font-size: 14px;	
	color: white;
}

#form-block button {
	width: fit-content;
}
@media (max-width: 960px) {
	#form-block .item_form:after {
		content: none!important;
	}
}
@media (max-width: 590px) {
	#form-block .form .info {
		gap: 10px;
		flex-direction: column;
	}
	#form-block .form .info > * {
		width: 100%;
	}
}
@media (max-width: 500px) {
	#form-block .item_form {
		padding: 20px;
	}
}
@media (max-width: 450px) {
	#form-block .form {
		gap: 10px;
	}
	#form-block .send {
		gap: 10px;
		flex-direction: column;
	}
	#form-block .spp-input {
		max-width: 100%;
		text-align: center;
	}
}