#register{
	padding: 40px 0;
	margin: 0 auto;
	max-width: 500px;
	width: 100%;
}
#register .rgtcnt{width: 100%;text-align: center;}
#login{
	background: linear-gradient(90deg, #fff 50%, #f6f7f9 50%);
	min-height: 400px;
	margin-bottom: -40px;
}
#login .box{
	margin: 50px 0;
	flex:0 0 50%;
	padding: 20px;
	box-sizing: border-box;
	text-align: center;
	justify-content: center;
}
#login .box h1,#login .box h2{
	font-weight: 500;
	font-size: 26px;
	padding: 0;
	margin: 0 0 30px 0;
}
#login .box .fc ul{
	list-style: none;
	padding: 0;
	margin:-10px 0 30px 0;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
#login .box .fc ul li{
	font-size: 15px;
	padding: 8px 0;
	position: relative;
}
#login .box .fc ul li span{
	font-size: 18px;
	color:#115D33;
	margin-right: 10px;
}
#login .box p{
	font-size: 15px;
	margin: 0 auto 40px auto;
	padding: 0;
	max-width: 400px;
}
#register .chk{
	display: block;
	font-size: 14px;
	text-align: left;
	max-width: 400px;
	margin: 0 auto 8px auto;
}
#register .chk a{color:#115D33;}
#register .fc,#login .box .fc{
	position: relative;
	display: block;
	max-width: 400px;
	margin: 0 auto;
	z-index: 1;
}
#register .fc label, #login .box .fc label{
	position: absolute;
	left: 20px;
	top:50%;
	transform: translateY(-50%);
	transition: ease 0.25s;
	z-index: 1;
	font-size: 15px;
}
#register .fc label.focuced,#login .box .fc label.focuced{
	font-size: 12px;
	top:15px;
	color:#8b8b8b;
	z-index: 6 !important;
}
#register .fc.inpt,#login .box .fc.inpt{
	width: 100%;
	border:1px solid #f1f1f1;
	background: #fff;
	box-sizing: border-box;
	display: block;
	margin-bottom: 15px;
	cursor: pointer;
	transition: ease 0.25s;
	z-index: 3;
	position: relative;
  border-radius: 4px;
	transition:all ease-out 0.25s;
}
#register .fc.inpt input, #register .fc.inpt select, #login .box .fc.inpt input{
	width: 100%;
	padding:25px 20px 5px 20px;
	height: 50px;
	line-height: 20px;
	font-size: 15px;
	line-height: 20px;
	position: relative;
	z-index: 3;
	border:none;
	background: transparent;
	background: none;
	box-sizing: border-box;
	cursor: pointer;
	outline:none;
	border-color: transparent;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
}
#register .fc input:focus,#register .fc select:focus, #login .box .fc input:focus{
	outline: none;
}
#register button[type=submit],#login .rgstbtn,#login button[type=submit]{
	width: 100%;
	border:none;
  padding: 17px 20px;
  box-sizing: border-box;
  background: #115D33;
  color: #fff;
  margin: 20px 0;
  display: inline-block;
  text-align: center;
  border-radius: 4px;
  font-weight: 500;
  font-size: 16px;
	max-width: 400px;
	cursor: pointer;
}
#login .pswr{
	text-align: left;
	margin: 30px auto !important;
}
#login .pswr a{
	position: relative;
	font-weight: 500;
	font-size: 15px;
}
#login .pswr a::before{
	content: '';
	height: 1px;
	width: 100%;
	-webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  transform-origin: 0 0;
	position: absolute;
	bottom:-3px;
	left: 0;
	background: #2D3C41;
	opacity: 0.6;
	transition:all ease-out 0.25s;
}
#login .pswr a:hover::before{
	transform: scaleX(1);
}
.fc:before{
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  width: 0;
  height: 0;
  background: transparent;
  border: 1px solid transparent;
	border-radius: 4px;
	z-index: 1;
}
.fc.inpt:hover:before{
  animation: animate 0.18s linear forwards;
}
.fc.inpt:hover:after{
  animation: animate2 0.18s linear forwards;
	animation-delay: 0.18s;
}
@keyframes animate{
  0%{
    width: 0;
    height: 0;
    border-top-color: #115D33;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
  }
  50%{
    width: 100%;
    height: 0;
    border-top-color: #115D33;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: #115D33;
  }
  100%{
    width: 100%;
    height: 100%;
    border-top-color: #115D33;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: #115D33;
  }
}
.fc:after{
  content: '';
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 0;
  height: 0;
  background: transparent;
  border: 1px solid transparent;
	border-radius: 4px;
	z-index: 1;
}
@keyframes animate2{
  0%{
    width: 0;
    height: 0;
    border-top-color: transparent;
    border-bottom-color: #115D33;
    border-left-color: transparent;
    border-right-color: transparent;
  }
  50%{
		width: 100%;
    height: 0;
    border-top-color: transparent;
    border-bottom-color: #115D33;
    border-left-color: #115D33;
    border-right-color: transparent;
  }
  100%{
    width: 100%;
    height: 100%;
    border-top-color: transparent;
    border-bottom-color: #115D33;
    border-left-color: #115D33;
    border-right-color: transparent;
  }
}
#static.user-area .usr-menu{
	width:280px;
	display: flex;
	flex-flow: column;
	padding: 60px 0 20px 0;
}
#static.user-area .usr-menu div:first-child{display: block;}
#static.user-area .usr-container{	display: flex; width: calc(100% - 310px); padding-left: 30px; flex-flow: column;}
#static.user-area .usr-container .ttl{text-align: center;}
#static.user-area .box{	flex:0 0 25%;padding: 20px;box-sizing: border-box; }
#static.user-area .box .cnt{
	border-radius: 25px;
	height: 100%;
	border:1px solid #e1e1e1;
	background: #fafafa;
	padding: 0 15px 0 40px;
	position: relative;
	box-sizing: border-box;
	text-align: center;
	transition: ease 0.25s;
}
#static .usr-menu .cnt{
	border-radius: 25px;
	border:1px solid #e1e1e1;
	background: #f6f7f9;
	padding: 15px 15px 15px 60px;
	position: relative;
	box-sizing: border-box;
	text-align: center;
	transition: ease 0.25s;
	margin-bottom:10px;
	color:#115D33;
	text-align: left;
}
#static .usr-menu .cnt a{color:#181E27;}
#static.user-area .box .cnt a{display: block; transition: ease 0.25s; padding: 15px 0;}
#static.user-area .box .cnt:hover a{color:#fff;}
#static.user-area .box .cnt:hover{background: #181E27; color:#115D33;}
#static.user-area .box .cnt span,#static .usr-menu .cnt span{
	color:#115D33;
	font-size: 25px;
	display: block;
	position: absolute;
	left:20px;
	top:15px;
	transition: ease 0.25s;
}
#static.user-area table{	width:100%; border-collapse: collapse;}
#static.user-area table thead td{ padding: 8px 4px; background: #115D33; color: #fff; font-size: 16px;}
#static.user-area table tbody td{ padding: 8px 4px; color: #181E27; font-size: 15px;}
#static.user-area table tbody tr:nth-child(even) td{background: #f6f7f9;}
@media only screen and (max-width: 640px){
#login{background: linear-gradient(180deg, #fff 50%, #f6f7f9 50%);}
#login .box{flex:0 0 100%;}
#login .row{flex-flow: column-reverse !important;}
}
