form .form-content {
	display: flex;
	flex-direction: column;
}
form .form-title {
	font-size: 40px;
	font-weight: 700;
	line-height: 100%;
	color: var(--white-color);
	margin-bottom: 24px;
}
form .form-switch {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 24px;
}
form .form-switch button {
	display: flex;
	align-items: center;
	color: var(--white-color);
	font-size: var(--h6-size);
	line-height: 125%;
	font-weight: 600;
	transition: .15s ease-out;
}
form .form-switch button::before {
	content: '';
	display: block;
	width: 22px;
	height: 22px;
	border: 1px solid #FFFFFF99;
	border-radius: 24px;
	margin-right: 8px;
	transition: .15s ease-out;
}
form .form-switch button:hover::before {
	border: 1px solid var(--white-color);
}
form .form-switch button.active::before {
	content: '';
	background: url('img/active.svg') center;
	background-size: 125%;
	border: 1px solid var(--white-color);
}
form .form-table .input-holder {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 20px;
}
form .form-table input {
	width: 100%;
	flex: 1;
}
form .form-table .submit-btn {
	width: 100%;
	text-align: center;
	border: none;
	padding: 18px 20px;
	background-color: var(--gray-black);
	color: var(--white-color);
	border-radius: 38px;
	margin-bottom: 12px;
}
form .form-table .form-agreement {
	font-weight: 600;
	opacity: 0.6;
	font-size: var(--p1-size);
	color: var(--white-color);
	font-size: var(--p2-size);
}
