/* login css */
body {
	background:black url("../img/login_bg.jpg") no-repeat center center;
	background-color:#ededed;
	background-size: cover;
	height: 100vh
}

.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;
	animation: login01 1s linear;
	overflow:hidden;
	background-color:rgba(43,58,72,0.4)
}

.div-table {
	display:table;
	width: 100%;
	height: 100%
}

.div-tablecell {
	display:table-cell;
	vertical-align:middle
}

@keyframes login02{
	from{
		opacity:0;
		}
	to{
		opacity:1;
	}
}

@keyframes login01{
	from{
		opacity:0;
		margin-top:100px;
		}
	to{
		opacity:1;
		margin-top:0px;
	}
}
.logosection{
	margin: 0 auto 30px;
	text-align: center;
	width: 100%;
}

.logosection img {
	width: 280px;
	display:block;
	margin: 0 auto;
	animation: login02 1s linear;
}

.logosection p {
	font-size: 17px;
	color:#f2f2f2;
	margin-top: 15px;
}

.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;
	padding: 5px;

}

/* .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;
	border: 0px;
}

.btn-box .btnlogin:hover {
	background-color:rgb(103, 131, 255);
	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
	}

}


