.auth_title {
	font-size: 32px;
	font-weight: 500;
	line-height: 150%;
}
@media (max-width: 768px) {
	.auth_title {
		font-size: 20px;
		line-height: 140%;
	}
}
.auth_title {
	text-align: center;
	margin-bottom: 32px;
}

.auth_wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 920px;
	background-color: #f4f5f5;
	border-radius: 28px;
}

.auth_img {
	flex: 0 0 440px;
	border-radius: 28px;
	overflow: hidden;
}

.auth_login {
	flex: 1;
	margin-left: 60px;
}
.auth_login .input_wrap {
	margin-bottom: 12px;
}
.auth_login .button_group {
	margin-top: 24px;
}

.radio {
	margin-bottom: 40px;
}

form {
	max-width: 360px;
}

.button_base {
	width: 100%;
	height: 62px;
	margin-top: 12px;
}

@media (max-width: 1023px) {
	.auth_title {
		display: none;
	}
	.auth_wrap {
		display: block;
	}
	.auth_login {
		margin-left: 0;
		padding: 32px 24px;
	}
	.auth_login .input_wrap {
		margin-bottom: 8px;
	}
	.auth_login .button_group {
		margin-top: 20px;
	}
	form {
		max-width: 100%;
	}
	.radio {
		margin-bottom: 20px;
	}
}