@charset "UTF-8";
/*     반응형 화면 크기     */
/*     폰트 모음     */
@font-face {
  font-family: "KimjungchulGothic-Bold";
  src: url("https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2302_01@1.0/KimjungchulGothic-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}
/*     때깔 모음     */
/*     기본 디자인     */
.container {
  display: flex;
  width: 100vw;
  height: 100vh;
}
.container .box {
  background: white;
  width: 100%;
  margin-top: 20px;
  border-radius: 20px;
  box-sizing: border-box;
  box-shadow: 0px 0px 15px 0px #D9D9D9;
  margin: auto;
  max-width: 450px;
  padding: 40px 50px;
  height: auto;
}
.container .box input {
  font-size: 16px;
}
.container .box .title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.container .box #id, .container .box #pw {
  outline: none;
  border: none;
  border-radius: 10px;
  padding: 20px;
  background-color: #F4F5F5;
  margin-bottom: 15px;
  width: 100%;
  display: block;
}
.container .box .option-wrap {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  margin-top: 20px;
}
.container .box .option-wrap .checkbox {
  cursor: pointer;
}
.container .box .forget-pw {
  cursor: pointer;
}
.container .box .btn-wrap {
  margin-top: 60px;
}
.container .box .btn-wrap .login {
  background: linear-gradient(to bottom right, #7ACAF1, #35B0E6);
  font-size: 16px;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 15px 20px;
  box-sizing: border-box;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: 25px;
  font-weight: 700;
}
.container .box .btn-wrap .register {
  background: #393939;
  font-size: 16px;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 15px 20px;
  box-sizing: border-box;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  padding: 10px;
  width: 100%;
  margin-top: 10px;
  font-weight: 300;
}

.checkbox .checkbox-input {
  display: none;
}
.checkbox .checkbox-input:checked + .checkbox-icon:before {
  background-color: #2260ff;
  border-color: #2260ff;
}
.checkbox .checkbox-icon {
  position: relative;
}
.checkbox .checkbox-icon:before {
  content: "";
  position: absolute;
  top: 0;
  display: block;
  width: 14px;
  height: 14px;
  margin-left: 5px;
  border: 2px solid #b5bfd9;
  background-color: #fff;
  border-radius: 50%;
  transition: 0.25s ease;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='192' height='192' fill='%23FFFFFF' viewBox='0 0 256 256'%3E%3Crect width='256' height='256' fill='none'%3E%3C/rect%3E%3Cpolyline points='216 72.005 104 184 48 128.005' fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='32'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

#forget-pw-modal {
  width: 400px;
}
#forget-pw-modal .modal-text {
  margin: 10px 0 30px;
  text-align: left;
}
#forget-pw-modal .modal-text h5 {
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  padding: 10px;
  margin: 10px 0;
  border-radius: 10px;
  background: #f4f5f5;
  border: 1px solid #cbcbcb;
}
#forget-pw-modal .modal-text h6 {
  font-size: 18px;
  margin: 15px 0 5px 0;
  font-weight: 700;
}
#forget-pw-modal .button-wrap {
  display: flex;
  justify-content: center;
  gap: 10px;
}
#forget-pw-modal .button-wrap .modal-closer {
  background: black;
  font-size: 16px;
  outline: none;
  border: none;
  border-radius: 5px;
  padding: 15px 20px;
  box-sizing: border-box;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

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