@font-face {
  font-family: Pretendard;
  src: url("./assets/fonts/Pretendard-Regular.woff2") format("woff2"), url("./assets/fonts/Pretendard-Regular.woff") format("woff"), url("./assets/fonts/Pretendard-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: Pretendard;
  src: url("./assets/fonts/Pretendard-Medium.woff2") format("woff2"), url("./assets/fonts/Pretendard-Medium.woff") format("woff"), url("./assets/fonts/Pretendard-Medium.ttf") format("truetype");
  font-weight: 500;
}
* {
  margin: 0px;
  padding: 0;
  box-sizing: border-box;
  font-family: Pretendard;
  font-weight: 400;
  font-size: 18px;
}

body {
  font-family: Pretendard;
  font-size: 18px;
}

a {
  text-decoration: none;
  color: inherit;
}

#logo {
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#logo img {
  width: 150px;
}
#logo h1 {
  font-size: 28px;
  font-weight: 600;
  margin-left: 15px;
}
@media all and (max-width: 450px) {
  #logo h1 {
    font-size: 25px;
    margin-left: 10px;
  }
}

#form {
  border-bottom: 1px solid #aaa;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
@media all and (max-width: 450px) {
  #form {
    margin-bottom: 15px;
  }
}

.radio-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.radio-wrap label {
  color: #666;
}

.submit-btn {
  width: 100% !important;
}

.mr-10 {
  margin-right: 10px;
}

.mr-20 {
  margin-right: 20px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-20 {
  margin-bottom: 20px;
}

.radio-wrap input[type=radio] {
  margin-right: 1px;
}

.login-wrap {
  min-height: 100vh;
  background: #eee;
}

.login {
  max-width: 350px;
  margin: 0 auto;
  padding-top: 10vh;
}

.textInput-wrap {
  position: relative;
}
.textInput-wrap .textInput {
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 17px;
  letter-spacing: -0.04em;
  line-height: 22px;
  padding: 8px;
  width: 350px;
  padding-right: 45px;
}
.textInput-wrap .textInput::-moz-placeholder {
  color: #ccc;
}
.textInput-wrap .textInput::placeholder {
  color: #ccc;
}
.textInput-wrap .textInput:focus {
  outline: none;
  border: 1px solid #666;
  color: #444;
  /* border: none; */
}
.textInput-wrap .reset-icon, .textInput-wrap .watch-icon {
  width: 20px;
  height: 20px;
  border: none;
  background-image: url("./assets/imgs/icon31.svg");
  background-position: center;
  background-size: cover;
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  background-color: transparent;
  cursor: pointer;
}
.textInput-wrap .watch-icon {
  right: 20px;
  width: 25px;
  height: 15px;
  background-image: url("./assets/imgs/icon30.svg");
}

.btn-orange {
  border: none;
  align-items: center;
  background-color: #ea7851;
  border-radius: 4px;
  color: #fff;
  display: flex;
  display: inline-flex;
  font-size: 17px;
  height: 40px;
  justify-content: center;
  letter-spacing: -0.04em;
  line-height: 22px;
  padding: 0 11px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  white-space: nowrap;
  width: 81px;
  cursor: pointer;
}
.btn-orange:hover {
  background-color: #e05836;
}

.btn-grey {
  border: 1px solid #aaaaaa;
  align-items: center;
  background-color: #eee;
  border-radius: 4px;
  color: #fff;
  display: flex;
  display: inline-flex;
  font-size: 17px;
  height: 40px;
  justify-content: center;
  letter-spacing: -0.04em;
  line-height: 22px;
  padding: 0 11px;
  color: #444;
  cursor: pointer;
}

.loginalert-msg {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.68px;
  color: #eb615a;
  line-height: 22px;
  margin-top: 40px;
  text-align: center;
}
.loginalert-msg img {
  width: 20px;
  vertical-align: bottom;
}

.login-msg {
  font-weight: 500;
  color: #222;
  text-align: center;
  margin-top: 30px;
}

.text-center {
  text-align: center;
}

.login-find {
  display: flex;
  justify-content: center;
}
.login-find a {
  font-size: 17px;
  font-weight: 500;
  color: #444;
  position: relative;
}
.login-find a:first-child::after {
  content: "";
  width: 1px;
  height: 20px;
  background-color: #666;
  position: absolute;
  right: -10px;
  bottom: 0;
}

.custom-checkbox {
  display: inline-block;
}
.custom-checkbox input[type=checkbox] {
  display: none;
}
.custom-checkbox input[type=checkbox] + label {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
}
.custom-checkbox input[type=checkbox]:checked + label {
  background-color: #ea7851;
  border: none;
  position: relative;
}
.custom-checkbox input[type=checkbox]:checked + label::before {
  content: "";
  width: 5px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  transform: rotate(42deg);
  left: 2px;
  bottom: 5.5px;
}
.custom-checkbox input[type=checkbox]:checked + label::after {
  content: "";
  width: 11px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  transform: rotate(-53deg);
  right: 1px;
  bottom: 6px;
}

.modal {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  left: 0;
  top: 0;
  z-index: 10;
}
.modal-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 200px;
  min-height: 200px;
  background-color: #fff;
  color: #000;
  border-radius: 8px;
  animation-name: ani;
  animation-duration: 0.3s;
  animation-timing-function: ease-out;
}
.modal-header {
  height: 40px;
  background-color: #00a37f;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  display: flex;
  justify-content: space-between;
}
.modal-inner {
  height: 150px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
}
.modal-inner p {
  color: #444;
  font-weight: 400;
  text-align: center;
}
.modal-footer {
  height: 60px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  background-color: #f6f6f6;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-close {
  width: 40px;
  height: 40px;
  background-color: #028b70;
  border-top-right-radius: 8px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.modal-close::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("./assets/imgs/icon32.svg");
  background-position: center;
  background-size: cover;
}

@media all and (max-width: 450px) {
  .textInput-wrap .textInput {
    width: 100%;
    min-width: 280px;
  }
  .login-find a {
    font-size: 15px;
  }
  .login-msg {
    font-size: 15px;
    margin-top: 15px;
  }
  .loginalert-msg {
    font-size: 14px;
    margin-top: 15px;
  }
}
@keyframes ani {
  0% {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}/*# sourceMappingURL=style.css.map */