
/* LOGIN CSS */

input {
	outline: none;
	border: none;
}

input::-webkit-input-placeholder { color: #666666;}
input:-moz-placeholder { color: #666666;}
input::-moz-placeholder { color: #666666;}
input:-ms-input-placeholder { color: #666666;}

button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

#poplogin {
  position:absolute;
  z-index:9999;
  display:none;
  top:10%;
  left:0;
  width: 100%;
  height:100%;
  background: rgba(0, 0, 0, 0.0);
}

.mklogin {
  position:relative;
  top:-45px;
  left:260px;
  width: 27px;
  height:27px;
  margin:auto;
}

.mask {  
  position:absolute;  
  z-index:9000;  
  background-color:#000;  
  display:none;  
  left:0;
  top:0;
}

.wrap-login {
  width: 600px;  
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.8);
  -webkit-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.8);
  -o-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.8);
  -ms-box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.8);
  margin:auto;
}

.login100-form {
  width: 100%;
}

.login-form-title {
  position: relative;
  display: block;
  top:-30px;
  left:0px;
  font-family: 'Nanum Gothic', sans-serif;
  font-weight:800;  
  font-size:2.5em;
  color: #555555;
  line-height: 1.2;
  text-align: center;
}

.wrap-input100 {
  width: 100%;
  position: relative;
  background-color: #fff;
  border: 1px solid #e6e6e6;
}

.wrap-input100.rs1 {
  border-top: none;
}

.validate-input {
  position: relative;
}

.input100 {
  display: block;
  width: 100%;
  background: transparent;
  font-size: 15px;
  color: #666666;
  line-height: 1.2;
}

input.input100 {
  height: 68px;
  padding: 0 25px 0 25px;
}

.focus-input100-1, 
.focus-input100-2 {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.focus-input100-1::before,
.focus-input100-2::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 1px;
  background-color: #4272d7;
}

.focus-input100-1::before {
  top: -1px;
  left: 0;
}

.focus-input100-2::before {
  bottom: -1px;
  right: 0;
}

.focus-input100-1::after,
.focus-input100-2::after {
  content: "";
  display: block;
  position: absolute;
  width: 1px;
  height: 0;
  background-color: #4272d7;
}

.focus-input100-1::after {
  top: 0;
  right: -1px;
}

.focus-input100-2::after {
  bottom: 0;
  left: -1px;
}

.input100:focus + .focus-input100-1::before {
  -webkit-animation: full-w 0.2s linear 0s;
  animation: full-w 0.2s linear 0s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.input100:focus + .focus-input100-1::after {
  -webkit-animation: full-h 0.1s linear 0.2s;
  animation: full-h 0.1s linear 0.2s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.input100:focus + .focus-input100-1 + .focus-input100-2::before {
  -webkit-animation: full-w 0.2s linear 0.3s;
  animation: full-w 0.2s linear 0.3s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.input100:focus + .focus-input100-1 + .focus-input100-2::after {
  -webkit-animation: full-h 0.1s linear 0.5s;
  animation: full-h 0.1s linear 0.5s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.container-login100-form-btn {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}

.login100-form-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  width: 100%;
  height: 60px;
  background-color: #4272d7;
  font-size: 14px;
  color: #fff;
  line-height: 1.2;
  text-transform: uppercase;

  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.login100-form-btn:hover {
  background-color: #333333;
}

.tts1 {
  font-size: 15px;
  line-height: 1.4;
  color: #999999;
}

.tts2 {
  font-size: 15px;
  line-height: 1.4;
  color: #4272d7;
}

.ttsover:hover {
  text-decoration: underline;
}

.text-center {text-align: center;}

@keyframes full-w {
  to {
    width: calc(100% + 1px);
  }
}

@keyframes full-h {
  to {
    height: calc(100% + 1px);
  }
}

.mt20 {margin-top: 20px;}
.pl55 {padding-left: 55px;}
.pt45 {padding-top: 45px;}
.pr55 {padding-right: 55px;}
.pt65 {padding-top: 65px;}
.pb04 {padding-bottom: 4px;}
.pb33 {padding-bottom: 33px;}
.pb50 {padding-bottom: 50px;}









