@charset "utf-8";

*, *:before, *:after {box-sizing: border-box;}
html {margin: 0; padding: 0; font-size: 10px; overflow-x: hidden; overflow-y: auto; -webkit-text-size-adjust: none; -moz-text-size-adjust:none; -ms-text-size-adjust: none ;word-break: break-word; box-sizing:border-box; transition: all 0.1s;}
body {margin: 0; padding: 0; color: #222; font-size: 1.6rem; font-family: 'Noto Sans CJK KR', "맑은 고딕", Malgun Gothic, "돋움", Dotum, "굴림", Gulim, Tahoma, Verdana, AppleGothic, UnDotum, sans-serif; font-weight: 400;}
h1, h2, h3, h4, h5, h6, ul, ol, li, dl, dt, dd, p, figure {margin:0;padding:0;list-style:none;}
fieldset{margin:0; padding:0; border:none;}
img{max-width: 100%; border:none;}
form{margin:0; padding:0;}
i{display: inline-block; line-height: 0;}
input, input[type="text"], input[type="password"]{color: inherit; font-size: inherit; font-family: inherit; font-weight: inherit; white-space: normal;}
button {position:relative; display:inline-block; margin:0; padding:0; background:none; border: 0; color: inherit; cursor:pointer; _cursor:hand; text-decoration:none; overflow: visible; font-size: inherit; font-family: inherit; font-weight: inherit; white-space: normal;}
button:disabled {cursor: inherit;}
/* IR */
.sr-only {position:absolute; width:1px;height: 1px; margin: -1px; color: transparent; clip:rect(0,0,0,0); overflow:hidden;}

#login{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100vh;
	background-color: #f5f5f5;
	transition: all 0.5s;
}
#login .wrap{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	min-height: 100vh;
}
#login .login-wrap{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	text-align: center;
	z-index: 1;
}
#login .logo{
	display: block;
	width: 100%;
	max-width: 20.9rem;
	margin: 0 auto;
	margin-bottom: 3rem;
}
#login .login-txt{
	display: block;
	margin-bottom: 2rem;
	line-height: 1.3;
	color: #868686;
	font-size: 2rem;
}
.login-wrap .login-body{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: 100%;
	max-width: 39.3rem;
	padding: 16.2rem 4rem 16rem;
	text-align: center;
	transition: all 0.5s;
}
.login-wrap .login-box{
	margin-bottom: 2.5rem;
}
.login-wrap .login-box .input_password,
.login-wrap .login-box .btn_login{
	position: relative;
	display: block;
	width: 100%;
	height: 5rem;
	padding: 1rem 2rem;
	font-size: 1.6rem;
}
.login-wrap .login-box .input_password{
	position: relative;
	margin-bottom: 1.2rem;
	padding: 1rem 2rem 1rem 5rem;
	border: 2px #c9a165 solid;
	background: url('../images/common/ico_lock.svg') 1.5rem 50% / 2.5rem no-repeat #fff;
	z-index: 0;
}
.login-wrap .login-box .input_password::placeholder{
	color: #aba496;
	font-size: 1.6rem;
	font-family: inherit;
}
.login-wrap .login-box .btn_login{
	box-shadow: 0 4px 4px 0px rgba(0,0,0,0.25);
	background-color: #222;
	color: #c9a165;
	font-size: 2rem;
	font-weight: 700;
}
.login-wrap .error-txt{
	margin: 0;
	text-align: center;
	color: #BC1A1A;
	font-size: 2rem;
}
.login-wrap .login-footer{
	display: block;
	width: 100%;
	padding: 3.8rem 20px;
	background-color: #000;
	color: #fff;
	font-size: 1.6rem;
}

@media only screen and (max-height:500px) {
	#login .login-wrap{
		height: auto;
	}
}
@media only screen and (max-width:768px) {
	html{
		font-size: 8px;
	}
	body{
		min-width: 280px;
	}
	.login-wrap .login-body{
		margin: 0;
		padding: 10rem 20px;
	}
}