/********************************************************************************/
/*								                                                */
/*  Design CHY       			                                                */
/*  Date : 2018-02-22		                                                  	*/
/*      				         			                                    */
/*									                                            */
/********************************************************************************/
* {margin:0px auto;padding:0px;}
* html {height:1px;}
input[type=text], input[type=password] {
	background-color		: #303030;
	color			: #59d1ff;
	border			: 1px solid #4a4a4a ;
	height : 36px;
	border-radius : 5px / 5px;
	font			: bold 11pt Malgun Gothic, Dotum;
}

input[type=text]:hover, input[type=text]:focus, input[type=password]:hover, input[type=password]:focus {
	background-color		: #303539;
	color			: #01b0f3;
	border			: 1px solid #0995cb ;
	height : 36px;
	border-radius : 5px / 5px;
	font			: bold 11pt Malgun Gothic, Dotum;
}

b {
	color			: #333333;
	font			: bold 11pt Malgun Gothic, Dotum;
}

span {
	color			: white;
	font			: 10pt Malgun Gothic, Dotum;
}

button{
  background:#1AAB8A;
  color:#fff;
  border:none;
  position:relative;
  height:60px;
  font-size:11px;
  padding:0 2em;
  cursor:pointer;
  transition:800ms ease all;
  outline:none;
  
  background-color		: #01b0f3;
  border-radius : 8px / 8px;
}
button:hover{
  background:#fff;
  color:#01b0f3;
}
button:before,button:after{
  content:'';
  position:absolute;
  top:0;
  right:0;
  height:2px;
  width:0;
  background: #01b0f3;
  transition:400ms ease all;
}
button:after{
  right:inherit;
  top:inherit;
  left:0;
  bottom:0;
}
button:hover:before,button:hover:after{
  width:100%;
  transition:800ms ease all;
}

.btnLogin {
	background-color		: #01b0f3;
	color			: white;
	border			: 1px solid #0995cb ;
	border-radius : 8px 8px 8px 8px;
}