/* font color */
/* family */
.login_wrap {
  max-width: 520px;
  padding: 40px 80px;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  margin: 0 auto 50px;
}
.login_wrap h2 {
  text-align: center;
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-family: "spoqa_bold";
  color: #1273eb;
}
.login_wrap form {
  margin-bottom: 20px;
}
.login_wrap .input_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  /*        .email {
      &::placeholder {
          background-image: url(../images/icons/user.png);
      }
  }

  .password {
      &::placeholder {
          background-image: url(../images/icons/padlock.png);
      }
  }*/
}
.login_wrap .input_wrap input {
  width: 100%;
  border: 1px solid #D6DAE1;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 16px;
  font-family: "spoqa_regular";
}
.login_wrap .input_wrap input::placeholder {
  color: #AFBFC6;
  /*                background-repeat: no-repeat;
  background-size: 18px auto;
  background-position: 1px center;*/
}
.login_wrap button[type=submit] {
  width: 100%;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  font-family: "spoqa_medium";
  background: #1273eb;
  padding: 16px 0;
}
.login_wrap button[type=submit]:hover {
  background: #1362C3;
  transition: var(--hover-transition);
}
.login_wrap .auto_login {
  margin-bottom: 30px;
}
.login_wrap .auto_login #auto_check {
  display: none;
}
.login_wrap .auto_login #auto_check + label {
  display: inline-flex;
  gap: 6px;
  color: #1273eb;
  font-family: "noto_regular";
  font-size: 14px;
  align-items: center;
  line-height: 1.5;
}
.login_wrap .auto_login #auto_check + label .check_btn {
  display: block;
  width: 24px;
  height: 24px;
  background: url(../images/icons/check-mark2-off.svg) no-repeat center center/auto 20px;
}
.login_wrap .auto_login #auto_check:checked + label .check_btn {
  background: url(../images/icons/check-mark2.svg) no-repeat center center/auto 20px;
}
.login_wrap .auto_login .auto_label {
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .login_wrap {
    max-width: 440px;
    box-shadow: none;
    padding: 0;
  }
}

/*# sourceMappingURL=Login2.css.map */
