.Wrap {
	position: relative;
	display:flex;
	justify-content:center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: #eaefff;
}

.login_wrap {
	display:block;
	width: 500px;
	height: 700px;
}

.login_head {
	width: 100%;
	height: 60px;
	display: block;
}

.login_body {
	height: 300px;
	width: 100%;
	display: block;
	position: relative;
	background: #fff;
	margin-top: 10px;
	padding: 20px;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.2);
}

.login_foot {
	display: block;
	width: 100%;
	margin-top: 10px;
}

.login_logo {
	width: 100%;
	height: 100%;
	display: block;
}

.login_logo > span {
	padding-left: 10px;
	font-size: 26px;
	font-weight: 700;
}

.login_tel{
	display: block;
	width: 100%;
	text-align: right;
}

.login_tel > span {
	padding-left: 10px;
	font-size: 22px;
	font-weight: 700;
}



.login_form {
	width: 450px;
	height: 100%;
	display: block;
	margin: 0 auto;
	color: #333;
}

.login_title {
	width: 100%;
	height: 36px;
	font-size: 24px;
	font-weight: 700;
	color: #0068b7;
	border-bottom: 1px solid #ccc;
}

.login_inner {
	flex: 1;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
}

.login_id {
	width: 100%;
	height: 50px;
	background: #fff;
	margin-top: 10px;
	display:inline-block;
	position: relative;
}

.login_id::after {
	content: ' ';
	display: block;
	width: 50px;
	height: 50px;
	position: absolute;
	left: 0;
	top: 0;
	background: url('/imgs/icon_loginid.png') center no-repeat;
}

.login_pw {
	width: 100%;
	height: 50px;
	background: #fff;
	margin-top: 5px;
	display:inline-block;
	position: relative;
}

.login_pw::after {
	content: ' ';
	display: block;
	width: 50px;
	height: 50px;
	position: absolute;
	left: 0;
	top: 0;
	background: url('/imgs/icon_loginpw.png') center no-repeat;
}

.login_input {
	width:100% !important;
	height: 100% !important;
	border: 1px solid #ccc !important;
	border-radius: 2px !important;
	text-indent: 50px !important;
	font-size: 16px !important;
	transition: border-color ease-in-out .15s,background ease-in-out .15s;
}

.login_input:focus {
	border: 1px solid #346aff !important;
	background: #ebefff !important;
}


.login_btn {
	width: 100%;
	height: 50px;
}



.login_link {
	flex: 1;
	width: 100%;
}

.userLink {
	display: flex;
	justify-content: right;
	align-items: center;
	width: 100%;
	height: 100%;
}

.userLink li {
	width: 120px;
	font-size: 16px;
	text-align:right;
}

.login_notice {
	flex: 1;
	width: 100%;
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	/*
	justify-content:center;
	align-items: center;
	*/
	padding-left: 20px;
	padding-right: 20px;
}

.login_notice_title {
	width: 100%;
	height: 36px;
	font-size: 24px;
	font-weight: 700;
	color: #0068b7;
}

.login_notice_inner {
	width: 100%;
	flex: 1;
}

.login_notice_list {
	margin-top: 10px;
}

.login_notice_list li {
	width: 100%;
	font-size: 16px;
	list-style: disc;
	margin-left: 20px;
	margin-bottom: 20px;
	line-height: 1.5;

}



/* 모바일용 스타일 */
@media (max-width: 600px) {
    .login_wrap {
        width: 90%;
        height: auto;
        padding: 10px; /* 좁은 여백 */
    }

    .login_head, .login_logo, .login_form, .login_body {
        width: 100%;
    }

    .login_logo > span {
        font-size: 20px;
    }

    .login_tel {
        width: 100%;
        text-align: right;
     }

    .login_tel > span {
        font-size: 18px;
    }

    .login_title {
        font-size: 20px;
    }

    .login_input {
        font-size: 14px !important;
    }

    .login_btn {
        height: 45px;
    }
}