main {
	position: relative;
	width: 100%;
	height: 100dvh;
	min-height: 1080px;
	background-image: url("../img/bg/bg_login.jpg");
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
main::before {
	content: "";
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	background-color: var(--gray-blue-100);
	width: 480px;
	height: 100%;
}
main h1 {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: 9.375%;
	font-size: 40px;
	color: var(--common-white);
	transform: translateY(-50%);
}
main h1 strong {
	font-weight: 700;
	color: var(--gray-blue-300);
}

/* login_section */
main .login_section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 50px;
	position: absolute;
	z-index: 3;
	top: 50%;
	transform: translateY(-50%);
	left: 9.375%;
	background-color: var(--common-white);
	width: 600px;
	height: 680px;
	border-radius: 6px;
	-webkit-box-shadow: 0 19px 40px 0 rgba(0, 0, 0, 0.1);
	box-shadow: 0 19px 40px 0 rgba(0, 0, 0, 0.1);
	padding: 0 70px;
	box-sizing: border-box;
}
main .login_section h2 {
	font-size: 56px;
	color: var(--primary-default);
}
main .login_section .input_box {
	position: relative;
	width: 100%;
}
main .login_section .input_box ul li:first-of-type {
	margin-bottom: 15px;
}
main .login_section .input_box ul li label {
	position: relative;
	display: block;
}
main .login_section .input_box ul li label > img {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
}
main .login_section .input_box ul li label .btn_password_view {
	position: absolute;
	z-index: 2;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	width: 24px;
	height: 24px;
	background-color: transparent;
	padding: 0;
	border: none;
	line-height: 0;
	background-image: url("/img/icon/icon_password_view_on.svg");
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	text-indent: -99999px;
}
main .login_section .input_box ul li label .btn_password_view.off {
	background-image: url("/img/icon/icon_password_view_off.svg");
}
main .login_section .input_box ul li input {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 60px;
	font-size: 20px;
	font-weight: 400;
	color: var(--gray-20);
	border: 1px solid var(--navy-200);
	padding: 0 48px;
	box-sizing: border-box;
}
main .login_section .input_box .caution_text{
	position: absolute;
	left: 0;
	bottom: -42px;
	display: flex;
	align-items: center;
	width: 100%;
	height: 34px;
	font-size: 14px;
	color: var(--state-error);
	padding: 0 16px;
	box-sizing: border-box;
	background-color: var(--red-50);
}
main .login_section .btn_login {
	width: 100%;
	height: 70px;
	border: none;
	color: var(--common-white);
	font-size: 18px;
	font-weight: 700;
	background-color: var(--navy-600);
}
main .login_section a {
	font-size: 14px;
	font-weight: 500;
	color: var(--primary-dark);
	text-decoration: underline;
	pointer-events: none !important;
}
