/* login css */
body {
	background:black url("../img/login_bg.jpg") no-repeat center center;
	background-color:#ededed;
	background-size: cover;
}

.container {
	text-align:center;
}
.loginzone {
	max-width:400px;
	width: 100%;
	height:330px;
	margin: auto;
	/* padding: 0 20px; */
	border:1px solid #fff;
	border-radius:15px;
	box-shadow:1px 1px 20px 1px #555;
	-webkit-animation: login01 1s linear;
	        animation: login01 1s linear;
	overflow:hidden;
	background-color:rgba(43,58,72,0.4)
}


@-webkit-keyframes login02{
	from{
		opacity:0;
		}
	to{
		opacity:1;
	}
}


@keyframes login02{
	from{
		opacity:0;
		}
	to{
		opacity:1;
	}
}

@-webkit-keyframes login01{
	from{
		opacity:0;
		margin-top:100px;
		}
	to{
		opacity:1;
		margin-top:0px;
	}
}

@keyframes login01{
	from{
		opacity:0;
		margin-top:100px;
		}
	to{
		opacity:1;
		margin-top:0px;
	}
}


.logosection img {
	width: 150px;
	display:block;
	margin: 0 auto 30px;
	-webkit-animation: login02 1s linear;
	        animation: login02 1s linear;
}

.logosection b {
	font-size:60px;
	margin-bottom: 20px;
	font-family: 'Heebo', sans-serif;
	font-weight:bold;
	color:#312C54
}

.logosection .title {
	font-size:30px;
	letter-spacing:1px;
	margin-bottom: 20px
}

.logosection .sub-title {
	font-size:14px;
	margin-bottom: 30px
}


/* 아이디/패스워드 입력창 */
.inputsection {
	width: 100%;
	margin: auto;
	/* background-color:rgba(0,0,0,0.5); */
	/* padding: 20px; */
	margin-bottom: 25px;
	
}

.inputsection input {
	background-color:#ededed;
	border:1px solid #bcbcbc;
	width: 330px;
	width: -webkit-calc(100% - 60px);
	width: -moz-calc(100% - 60px);
	width: calc(100% - 60px);
	height: 40px;
	transition:all 300ms;
	border-radius:7px;
	margin-top:10px;

}

/* .inputsection input:hover, */
.inputsection input:focus,
.inputsection input:active {
	border:1px solid #312C54;
}

.inputsection input.inputID {
	margin-bottom: 10px;
}

.inputsection .id-title {
	width:100%;
	height:40px;
	line-height:40px;
	border-bottom:1px solid #fff;
	margin-bottom:20px;
	color:#fff;
	background-color:rgba(43,58,72,0.4)
}

.id p, .pw p {
	text-align:left;
	color:#fff;
	width: 330px;
	width: -webkit-calc(100% - 60px);
	width: -moz-calc(100% - 60px);
	width: calc(100% - 60px);
	margin:0 auto;
	font-size:14px;
	line-height:20px;
}

.btn-box .btnlogin {
	width: 330px;
	width: -webkit-calc(100% - 60px);
	width: -moz-calc(100% - 60px);
	width: calc(100% - 60px);
	height: 40px;
	cursor:pointer;
	background-color:#fff;
	color:#222;
	transition:all 300ms;
	border-radius:7px;
}

.btn-box .btnlogin:hover {
	background-color:rgba(43,58,72);
	color:#fff;
}

.copy {
	margin-top: 20px;
	font-size:12px;
	color:#fff
}

.copy img {
	height: 15px;
}

.copy strong {
	
}


/* 모바일 */
@media(max-width:575px) {
	
	.logosection .title {
		font-size:25px;
		margin-bottom: 10px;
	}

	.logosection .sub-title {
		margin-bottom: 20px
	}

}


