body.login {
  background: var(--bs-gray-200);
}

.login_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
}
.login_wrap .login_box {
  width: 80%;
  max-width: 900px;
  min-height: 540px;
  background: #fff;
  display: flex;
  border-radius: 10px;
  overflow: hidden;
}
.login_wrap .login_box > div {
  width: 50%;
}
.login_wrap .login_box .box_left {
  background-image: url(/images/common/bg_login.png);
  background-size: cover;
}
.login_wrap .login_box div h1 {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  margin: 4rem 3rem;
  line-height: 1.2em;
}
.login_wrap .login_box div h1 img {
  width: 60px;
  margin-bottom: 0.5em;
}
.login_wrap .login_box div h1 span {
  font-weight: 300;
  font-size: 1.4rem;
  display: block;
}
.login_wrap .login_box .box_right {
  padding: 2em 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.login_wrap .login_box .box_right .box_inner {
  margin: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.login_wrap .login_box .box_right .box_inner h2 {
  font-weight: 700;
  font-size: 2em;
  margin-bottom: 0.8em;
}

.login_wrap .login_box span {
  position: relative;
}
.login_wrap .login_box span::before {
  content: "";
  width: 2.5em;
  height: 1.5em;
  position: absolute;
  top: 0.8em;
  left: 0;
  z-index: 10;
  background-repeat: no-repeat;
  background-position: left 1em center;
}
.login_wrap .login_box span.login_id_wrap::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='20' viewBox='0 0 18 20'%3E%3Cg  transform='translate(-3 -2)'%3E%3Cpath id='g2' d='M20,21V19a4,4,0,0,0-4-4H8a4,4,0,0,0-4,4v2' fill='none' stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3Cpath id='g1' d='M16,7a4,4,0,1,1-4-4A4,4,0,0,1,16,7Z' fill='none' stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.login_wrap .login_box span.login_pass_wrap::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='21.413' viewBox='0 0 22 21.413'%3E%3Cpath  d='M21,2,19,4m-7.61,7.61a5.5,5.5,0,1,1-7.779,0,5.5,5.5,0,0,1,7.779,0Zm0,0L15.5,7.5m0,0,3,3L22,7,19,4M15.5,7.5,19,4' transform='translate(-1 -0.586)' fill='none' stroke='%23666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'/%3E%3C/svg%3E%0A");
}

.login_wrap .login_box input {
  margin-bottom: 0.5em;
  padding: 0.8em 0.8em 0.8em 3em;
  position: relative;
  background-repeat: no-repeat;
  background-position: left 1em center;
}

.login_wrap .login_box .login_pass {
  width: 100%;
}
.login_wrap .login_box .btn_login {
  background: var(--point-600);
  color: #fff;
  padding: 0.7em;
  margin-top: 1em;
}
.login_wrap .login_box .box_bottom {
  color: var(--bs-gray-600);
}
.login_wrap footer {
  margin-top: 2em;
  text-align: center;
  line-height: 1.5em;
  opacity: 0.8;
}
.login_wrap footer img {
  margin-bottom: 1em;
}

@media (max-width: 768px) {
  .login_wrap .login_box {
    width: 95%;
  }
  .login_wrap .login_box .box_right {
    padding: 2em 5%;
  }
}
@media (max-width: 576px) {
  .login_wrap .login_box {
    flex-direction: column;
    margin-top: 2.5%;
  }
  .login_wrap .login_box > div {
    width: 100%;
  }
  .login_wrap .login_box div h1 {
    margin: 2em 1em;
    font-size: 1.5em;
  }
  .login_wrap .login_box div h1 span {
    font-size: 1rem;
  }
  .login_wrap .login_box .box_right .box_inner h2 {
    font-size: 1.8em;
  }
  footer {
    font-size: 0.8em;
  }
}
.error {
  color: red;
  margin-bottom: 10px;
  text-align: center;
}
