/* 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;
  /*    .email {
      &::placeholder {
          background-image: url(../images/icons/user.png);
      }
  }

  .password {
      &::placeholder {
          background-image: url(../images/icons/padlock.png);
      }
  }*/
}
.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 {
  position: relative;
}
.login_wrap .box {
  flex-direction: column;
  display: flex;
  gap: 12px;
  margin-bottom: 67px;
  position: relative;
}
.login_wrap .box .input_wrap {
  width: 100%;
}
.login_wrap .box .pw_wrap {
  display: flex;
  gap: 12px;
}
.login_wrap .box input {
  width: 100%;
  border: 1px solid #D6DAE1;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.5px;
  padding: 10px 16px;
  font-family: "spoqa_regular";
  flex: 1;
}
.login_wrap .box input::placeholder {
  color: #AFBFC6;
  /*padding-left: 22px;
  background-repeat: no-repeat;
  background-size: 14px auto;
  background-position: 1px center;*/
}
.login_wrap .email.error {
  background: #FAF2F2;
  outline: none;
}
.login_wrap .email.error:focus {
  border: 2px solid #E57373;
}
.login_wrap .password.error {
  background: #FAF2F2;
  outline: none;
}
.login_wrap .password.error:focus {
  border: 2px solid #E57373;
}
.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_bold";
  background: #1273eb;
  padding: 16px 0;
}
.login_wrap .timer, .login_wrap .send, .login_wrap .resend {
  width: 112px;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1.5;
  color: #1273eb;
  border: 1px solid #1273eb;
  font-family: "spoqa_bold";
  padding: 10px 0;
}
.login_wrap .timer {
  display: none;
}
.login_wrap .timer.on {
  display: flex;
}
.login_wrap .send {
  font-size: 14px;
  font-family: "spoqa_regular";
}
.login_wrap .send.on {
  display: flex;
}
.login_wrap .resend.on {
  display: flex;
  font-size: 12px;
}
.login_wrap .error_msg {
  display: none;
  position: absolute;
  bottom: -36px;
  left: 0;
  padding-left: 28px;
}
.login_wrap .error_msg img {
  width: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.login_wrap .error_msg p {
  font-size: 14px;
  font-family: "spoqa_regular";
  line-height: 1.5;
  color: #E57373;
}
.login_wrap .error_msg.on {
  display: block;
}

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

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