@charset "utf-8";

/*로그인페이지*/
.loginBox {
  width: 90%;
  max-width: 520px;
  padding:68px 45px;
  border:1px solid #D9D9D9;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  left:50%;
  top:50%;
  transform: translate(-50%,-50%);
  margin: 0;
  box-sizing: border-box;
  color: #666;
}

.loginBox img {
  width: 100%;
  max-width: 265px;
  margin:0 auto;
  margin-bottom: 65px;
  display: block;
}

.loginBox div input {
  margin-bottom: 20px;
  width: 100%;
  height: 50px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  background-color: #fff;
  padding-left:5px;
}

.loginBox button {
  width: 100%;
  height: 50px;
  background-color: #3D76E8;
  border-radius: 5px;
  color:#fff;
  cursor:pointer;
  margin-bottom: 25px;
  border:0;
}

.loginBox .save {
  display: flex;
  align-items: center;
}


.loginBox .save input {
  width: 20px;
  height: 20px;
  margin-bottom: 0;
}

.loginBox .save span {
  padding-left: 10px;
  font-size: 13px;
}



@media all and (max-width: 740px) {
  .loginBox {
    padding: 50px 30px;
  }
}
