.form-page {
	padding: 100px 0 0 0;
}
.form-page__wrapper {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.form-page__item {
	flex: 1 1 50%;
}
.form-page__item:first-child {
	padding: 50px;
	background: #f3f3f4;
}
.form-page__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.form-page__item-title {
	margin: 0 0 20px 0;
	color: #30363a;
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.form-page__item-descr {
	margin: 0 0 20px 0;
	color: #30363a;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 155%;
}

.form-page__form {
	width: 100%;
	max-width: 450px;
}

.form-page__form-input {
	width: 100%;
	margin: 0 0 25px 0;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	border-bottom: 1px solid #6c7c80;
}
.form-page__form-input img {
	max-width: 30px;
	padding: 5px 0 0 0;
}
.form-page__form-input input {
	width: 100%;
	padding: 0 0 14px 0;
	color: black;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	border: none;
	outline: none;
}

.form-page__form-select {
	width: 100%;
	margin: 0 0 25px 0;
	border-bottom: 1px solid #6c7c80;
}
.form-page__form-select select {
	width: 100%;
	max-width: 100%;
	padding: 0 0 14px 0;
	color: black;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	border: none;
	outline: none;
	margin: 0;
}
.form-page__form-select input {
	background: none !important;
	border-bottom: none !important;
}

.form-page__form-btn {
	max-width: 240px;
	width: 100%;
	background: #00647b;
	box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
	padding: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: normal;
	cursor: pointer;
}

@media (max-width: 768px) {
	.form-page {
		padding: 65px 0 0 0;
	}
	.form-page__item:first-child {
		padding: 0;
		background: white;
	}
	.form-page__item:nth-child(2) {
		display: none;
	}
	.form-page__item-title {
		font-size: 24px;
		text-align: center;
		margin: 0 0 10px 0;
	}
	.form-page__item-descr {
		text-align: center;
	}
	.form-page__form-btn {
		max-width: 100%;
	}
}
