.btn-arrow {
  background: url(../../img/ico_arrow-right.svg) no-repeat center right;
}

.hero--bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../../img/login_bg.jpg) no-repeat center center;
  background-size: cover;
  position: relative;
  height: 50vh;
  text-align: center;
  border-radius: 0 0 50px 50px;
}
.hero--bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.hero--bg > * {
  position: relative;
  z-index: 2;
  color: white;
}
.hero__logo-img {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: block;
  width: 50%;
  margin: 0;
  z-index: 2;
}
.hero__desc {
  width: 100%;
  position: absolute;
  top: calc(40% + 40px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 20px;
  font-weight: 600;
  z-index: 2;
  margin: 0;
}
.hero__no-login {
  position: absolute;
  left: 50%;
  bottom: 22px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 15px;
  font-weight: 400;
  padding-right: 17.5px;
  z-index: 2;
  margin: 0;
}

.login {
  padding: 50px 20px 0;
}

.inputForm__group {
  margin-bottom: 8px;
  border: 1px solid #ffffff;
  border-radius: 6px;
  background-repeat: no-repeat;
  background-position: 10px center;
}
.inputForm__group--name {
  background-image: url("../../img/form_person--off.svg");
}
.inputForm__group--phoneNum {
  background-image: url("../../img/form_call--off.svg");
}
.inputForm__group--id {
  background-image: url("../../img/form_id.svg");
}
.inputForm__group--pw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: url("../../img/form_pw.svg");
}
.inputForm__input {
  width: calc(100% - 44px);
  padding: 0 10px;
  height: 49px;
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-left: 43px;
  border: none;
  border-radius: 6px;
  background-color: transparent;
}
.inputForm__input::-webkit-input-placeholder {
  color: #ffffff;
}
.inputForm__input::-moz-placeholder {
  color: #ffffff;
}
.inputForm__input:-ms-input-placeholder {
  color: #ffffff;
}
.inputForm__input::-ms-input-placeholder {
  color: #ffffff;
}
.inputForm__input::placeholder {
  color: #ffffff;
}
.inputForm__input:focus {
  outline: none;
}
.inputForm__pw-toggle {
  cursor: pointer;
  margin-right: 10px;
  background: url("../../img/form_pw-hide.svg");
  background-repeat: no-repeat;
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
  color: transparent;
}
.inputForm__pw-toggle.active {
  background: url("../../img/form_pw-show.svg");
}

.checkboxForm {
  padding-bottom: 44px;
}
.checkboxForm__group {
  margin-top: 16px;
  border: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.checkboxForm__input:checked + .checkboxForm__label::after {
  border-color: #ffffff;
}
.checkboxForm__input:checked + .checkboxForm__label::before {
  border-color: #0B7BBF;
  background-color: #0B7BBF;
}
.checkboxForm__label {
  color: #C3C3C3;
  height: auto;
  padding-left: 0;
  font-size: 13px;
  font-weight: 500;
}
.checkboxForm__label::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 1px solid #B8B8B8;
}
.checkboxForm__label::after {
  content: "";
  position: absolute;
  top: 4.8px;
  left: 8.2px;
  width: 5px;
  height: 10px;
  border: solid #B8B8B8;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.checkboxForm__find-account {
  color: #C3C3C3;
  font-size: 13px;
}

.bottom-btn {
  display: block;
  margin: auto auto 20px;
  height: 49px;
  line-height: 49px;
  text-align: center;
  border: 1px solid #0B7BBF;
  color: #0B7BBF;
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  -webkit-transition: background-color 0.3s, color 0.3s;
  transition: background-color 0.3s, color 0.3s;
  cursor: pointer;
  background-color: transparent;
}
.bottom-btn--primary {
  color: white;
  background-color: white;
  border-color: #0B7BBF;
  background-color: #0B7BBF;
  margin-bottom: 12px;
}
.bottom-btn--primary:hover {
  background-color: #0366a3;
  color: white;
}

.hero__logo-img {
  max-width: 170px;
}/*# sourceMappingURL=login.css.map */