@charset "utf-8";
/****************************************************
	Login Style
****************************************************/

.login-bbs-box{
    width: 300px;
    height: 500px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 60px 50px;
    background:rgba( 13, 13, 13, 0.6 );
    box-shadow: 0 5px 10px -8px #0d0d0d99;
    border-image-slice: 1;
}
.login-logo{
display: block;
    margin: 0 auto 10px;
    text-align: center;
}

.form-group {
  position: relative;
  font-size: 15px;
     color: #ededed;
}
.form-group + .form-group {
  margin-top: 20px;
}
.form-group .form-label {
  position: absolute;
  font-family: 'ON-IGothic';
  z-index: 1;
  left: 0;
  top: 5px;
  transition: 0.3s;
  color: #ededed33;
}
.form-group .form-control {
  width: 100%;
  position: relative;
  z-index: 3;
  height: 35px;
  background: none;
  border: none;
  padding: 5px 0;
  transition: 0.3s;
  font-size: 12pt;
 border-bottom: 1px solid #ededed33;
}
.form-group .form-control:invalid {
  outline: none;
}
.form-group .form-control:focus + .form-label, .form-group .form-control:valid + .form-label {
  font-size: 12px;
  -webkit-transform: translateY(-15px);
  transform: translateY(-15px);
}


/*-- Checkbox --------------------------- */
@keyframes click-wave {
  0% {
    height: 20px;
    width: 20px;
    opacity: 0.35;
    position: relative;
  }
  100% {
    height: 100px;
    width: 100px;
    margin-left: -40px;
    margin-top: -40px;
    opacity: 0;
  }
}

.option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  right: 0;
  bottom: 0;
  left: 0;
  height: 20px;
  width: 20px;
  transition: all 0.15s ease-out 0s;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  z-index: 1000;
  border-radius: 50%;
  color: #fff;
  background: #cbd1d8;
}
.option-input:checked::before {
    height: 20px;
    width: 20px;
    position: absolute;
    content: '✔';
    display: inline-block;
    font-size: 10pt;
    text-align: center;
    line-height: 20px;
}
.option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  content: '';
  display: block;
  position: relative;
  z-index: 100;
  border-radius: 50%;
}
.option-input:hover {
	  background: #9faab7;
	}

.form-remember{
	position: relative;
    height: 30px;
    font-size: 10pt;
	 display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 10px auto 20px;
}

.form-remember label{
	font-family: 'ON-IGothic';
}


/*-- loginbtn --------------------------- */


.login_btn{
    font-family: 'ON-IGothic';
    font-size: 12pt;
    width: 100%;
    position: relative;
    border-radius: 30px;
    height: 30px;
    border: none;
    line-height: 30px;
    text-align: center;
    clear: both;
    margin-bottom: 2px;
}
