/* ------ 담당자 주석 표기, 주석 표기 시 가급적 영문표기(언어 설정 에러 시 한글 깨짐), 주요 부분 주석 표기, 사용하지 않는 부분 삭제, 에러 시 오타 확인 ---- */
/* ----------------------------------------------------
--- 1st : 2022.09.01 pjsuny emro DesignTeam
---------------------------------------------------- */

@charset "utf-8";
@import url("reset.css");

.ai_bg {
  background-image: url(../img/login_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
#container {
  position:fixed;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width: 370px;
  height: 600px;
  text-align:center;
  box-sizing: border-box;
  z-index: 999;
}
#container h1 {
  text-align: center;
}
#container h1>b {
  color: #71BBFF;
  font-size: 160px;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0px 2px 4px rgba(0, 22, 102, 0.9);
}
#container h1>p {
  font-size: 18px;
  color: #7AA7FF;
  font-weight: 500;
  line-height: 2.5;
}
/* FORM */
.login_form {
  overflow: hidden;
  display: block;
  margin-top: 40px;
  font-size: 14px;
  letter-spacing: 0;
}
.login_form .Form {
  margin-top: 25px;
}
.login_form .Form li {
  margin-bottom: 10px;
}
.login_form .Form li:nth-last-child(1) {
  margin-bottom: 30px;
}
.login_form .Form li input {
  width: 362px;
  height: 40px;
  border-radius: 25px;
  border: 0;
  background: #5064CE;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  padding: 0 35px;
  color: #fff;
  letter-spacing: 1px;
  box-sizing: border-box;
}
.login_form .option {
  margin-top: 25px;
  text-align: center;
}
.login_form .option>p {
  margin: 20px 0 15px;
}

/* BUTTON */
a.btn_rnd {
  width: 362px;
  height: 40px;
  border-radius: 25px;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.25);
  font-size: 16px;
  text-align: center;
  line-height: 40px;
}
a.btn_blue {
  background: #282FDA;
  color: #fff;
}
a.btn_blue:hover {
  background: #000eb9;
}
a.btn_white {
  background: #fff;
  color: #3F3E42;
}
a.btn_white:hover {
  background: #000eb9;
  color: #fff;
}
.txt_fo8 {
  color: rgba(255, 255, 255, 0.8);
}

::placeholder {
  color: #fff !important;
  opacity: 0.5;
}
:-ms-input-placeholder {
  color: #fff !important;
}
::-ms-input-placeholder {
  color: #fff !important;
}

