html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans KR", sans-serif;
  user-drag: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important; /* 배경 강제 덮어쓰기 */
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #000 !important; /* 글자색도 초기화 */
  transition: background-color 9999s ease-out !important; /* 깜빡임 방지 */
}


input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px white inset !important;
  -webkit-text-fill-color: #000 !important;
}

* {
  -webkit-tap-highlight-color: transparent;
}



.total_div {
  display: flex;
  user-select: none;
  width: 100%;
  height: 100%;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #f1f5f7;
}

.login_div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  height: 50%;
  padding: 20px;
  gap: 20px;
  padding-top: 70px;
}

.login_title {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 10px;
  width: 350px;
  justify-content: center;
}
/* .login_img_div {
  width: 60px;
  height: 60px;
  background-size: 60px 60px;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("/static/admin/images/icon.png");
} */
.login_text {
  font-size: 30px;
  font-weight: 600;
  color: #000000;
}

.input_div {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 250px;
  justify-content: center;
}

.login_input {
  width: 100%;
  height: 30px;
  outline: none;
  border: none;
  background: none;
  padding-right: 25px;
}
.id_div,
.password_div {
  position: relative;
  border: 1px solid #0000001f;
  border-radius: 5px;
  display: flex;
  padding: 0 10px;
  width: 100%;
  background-color: #ffffff;
}
.on_off_img_div {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("/static/admin/images/password_off.png");
  cursor: pointer;
}

.on_off_img_div.active {
  background-image: url("/static/admin/images/password_on.png");
}

.login_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 40px;
  background-color: #000000;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
}

@media (min-width: 768px) {
  .login_div {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    height: 50%;
    padding: 20px;
    gap: 20px;
    padding-top: 100px;
  }
  .input_div {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 300px;
    justify-content: center;
  }
  .login_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 300px;
    height: 40px;
    background-color: #000000;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
  }
}
