@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@font-face {
  font-family: "NanumSquareNeo";
  font-weight: 900;
  font-display: swap;
  src: local("NanumSquareNeoTTF-eHv"), url("../fonts/NanumSquareNeoTTF-eHv.woff2") format("woff2"), url("../fonts/NanumSquareNeoTTF-eHv.woff") format("woff");
}
@font-face {
  font-family: "NanumSquareNeo";
  font-weight: 800;
  font-display: swap;
  src: local("NanumSquareNeoTTF-dEb"), url("../fonts/NanumSquareNeoTTF-dEb.woff2") format("woff2"), url("../fonts/NanumSquareNeoTTF-dEb.woff") format("woff");
}
@font-face {
  font-family: "NanumSquareNeo";
  font-weight: 700;
  font-display: swap;
  src: local("NanumSquareNeoTTF-cBd"), url("../fonts/NanumSquareNeoTTF-cBd.woff2") format("woff2"), url("../fonts/NanumSquareNeoTTF-cBd.woff") format("woff");
}
@font-face {
  font-family: "NanumSquareNeo";
  font-weight: 400;
  font-display: swap;
  src: local("NanumSquareNeoTTF-bRg"), url("../fonts/NanumSquareNeoTTF-bRg.woff2") format("woff2"), url("../fonts/NanumSquareNeoTTF-bRg.woff") format("woff");
}
@font-face {
  font-family: "NanumSquareNeo";
  font-weight: 300;
  font-display: swap;
  src: local("NanumSquareNeoTTF-aLt"), url("../fonts/NanumSquareNeoTTF-aLt.woff2") format("woff2"), url("../fonts/NanumSquareNeoTTF-aLt.woff") format("woff");
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #0F1B2A;
  font-family: "NanumSquareNeo", sans-serif;
}

a {
  color: #0F1B2A;
  text-decoration: none;
  font-family: "NanumSquareNeo", sans-serif;
}

ul, li, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

input::-ms-clear,
input::-ms-reveal {
  display: none;
  width: 0;
  height: 0;
}

input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
  display: none;
}

html, body {
  width: 100%;
  height: 100%;
  background: #EEF1F6;
  position: relative;
}

.login {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 440px;
  height: 640px;
  background-color: #fff;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login .logo {
  width: 134px;
}
.login h2 {
  font-weight: 700;
  font-size: 24px;
  margin: 75px 0 40px;
}
.login form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.login form > div {
  position: relative;
}
.login form > div:first-of-type::after {
  content: "아이디*";
}
.login form > div:nth-of-type(2)::after {
  content: "비밀번호*";
}
.login form > div.on::after {
  display: block;
}
.login form > div::after {
  display: none;
  background: #fff;
  position: absolute;
  bottom: calc(100% - 6.5px);
  left: 12px;
  font-weight: 700;
  font-size: 12px;
  color: #12B76A;
}
.login input[type=text], .login input[type=password] {
  width: 100%;
  height: 48px;
  padding-left: 12px;
  border: 1px solid #CDD3DD;
  border-radius: 6px;
  outline: none;
  font-size: 13px;
  color: #0F1B2A;
}
.login input[type=text]:focus, .login input[type=password]:focus {
  border: 1px solid #6CE9A6;
}
.login input[type=text]::-moz-placeholder, .login input[type=password]::-moz-placeholder {
  font-weight: 700;
  color: #8D99A8;
}
.login input[type=text]::placeholder, .login input[type=password]::placeholder {
  font-weight: 700;
  color: #8D99A8;
}
.login .check_wrap {
  margin: 12px 0 0;
  width: 100%;
}
.login .check_wrap > input[type=checkbox] {
  display: none;
}
.login .check_wrap > input[type=checkbox]:checked + .check div {
  background: url(../img/common/check.svg) no-repeat;
  border: none;
}
.login .check_wrap .check {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.login .check_wrap .check > div {
  width: 16px;
  height: 16px;
  background: #FFFFFF;
  border: 1px solid #D6D6D6;
  border-radius: 3px;
}
.login .login_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #32D583;
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 800;
  width: 100%;
  height: 42px;
  border: none;
}
.login .login_btn a {
  color: #FFFFFF;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}