@charset "UTF-8";
/* Type ⋮ _mixin.scss · Author ⋮ Gahye Park · Create date ⋮ 2023. 12. 27 */
@import "/assets/fonts/pretendard/fonts.css";
@import "/assets/fonts/NotoSansKR/fonts.css";
@import "/assets/fonts/line-awesome/line-awesome.min.css";
@import "/assets/fonts/xeicon/xeicon.min.css";
/*************************************
    # dashboard 공통 변수 
************************************/
/* font family */
/* color */
:root {
  /* color */
  --color-primary: #333;
  --color-secondary: #666;
  --color-tit: #262626;
  --color-point: #7660f6;
  --color-gradient: linear-gradient(90deg, #646BFF 0%, #4794EF 50%, #2ABCDF 100%);
  --color-line1: rgba(215, 109, 119, 0.25);
  --color-line2: rgba(118, 96, 246, 0.7);
  --white: #fff;
  --black: #000;
  /* -- font -- */
  --ff1: Line Awesome Free;
  --ff2: xeicon;
  --ff3: Pretendard;
  --ff4: NotoSans;
}

/* responsive */
/* Type ⋮ login.scss · Author ⋮ hyeonjin · Create date ⋮ 2025. 10.10  */
.login-wrap {
  width: 100%;
  height: 100vh;
  background: var(--white);
  position: relative;
}
.login-wrap:after {
  content: "";
  display: inline-block;
  width: 30%;
  height: 100%;
  background: url(/assets/images/login/login-bg-l.png) no-repeat center/100% 100%;
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(20px);
  transform: translateX(-50px);
  transition: opacity 1.5s ease, filter 1.5s ease, transform 1.5s ease;
}
.login-wrap:before {
  content: "";
  display: inline-block;
  width: 30%;
  height: 100%;
  background: url(/assets/images/login/login-bg-r.png) no-repeat center/100% 100%;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  filter: blur(20px);
  transform: translateX(50px);
  transition: opacity 1.5s ease, filter 1.5s ease, transform 1.5s ease;
}
.login-wrap.active::before, .login-wrap.active::after {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
.login-wrap .login-con {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.45rem;
  width: 24rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  z-index: 3;
  /* ani */
}
.login-wrap .login-con .tab-st1 {
  margin: 0;
  width: 100%;
}
.login-wrap .login-con .logo-tit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}
.login-wrap .login-con .logo-tit img {
  width: 15.6rem;
  height: 4.25rem;
}
.login-wrap .login-con .logo-tit .tit {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--color-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.login-wrap .login-con .input-check {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.login-wrap .login-con .input-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.login-wrap .login-con .input-wrap .input-box label {
  display: inline-block;
  color: #666;
  font-size: 0.65rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.login-wrap .login-con .input-wrap .input-box input {
  width: 100%;
  height: 2.5rem;
}
.login-wrap .login-con .check-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
}
.login-wrap .login-con .login-btns {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}
.login-wrap .login-con .login-btns button {
  width: 100%;
  height: 3.5rem;
  font-size: 1.3rem;
}
.login-wrap .login-con .logo-tit, .login-wrap .login-con .input-check, .login-wrap .login-con .login-btns {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.log-pop .layer-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #666;
}
.log-pop .layer-cont .tit {
  font-size: 1.3rem;
  font-weight: 700;
}
.log-pop .layer-cont p {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2rem;
}
.log-pop .layer-cont p strong {
  font-weight: 800;
}
.log-pop .btns {
  display: flex;
  flex-direction: column;
}
.log-pop .btns button {
  width: 100%;
}

/* reponsive */
/* 1400px */
/* 1024px */
/* 768px */
/* 480px */
/* 400px */
@media (max-width: 1400px) {
  .login-wrap.active:after,
  .login-wrap.active:before {
    width: 22rem;
  }
  .login-wrap .login-con {
    width: 70%;
  }
}
@media (max-width: 1024px) {
  .login-wrap.active:after,
  .login-wrap.active:before {
    width: 15rem;
  }
  .login-wrap .login-con .logo-tit img {
    width: 100%;
  }
  .login-wrap .login-con .logo-tit .tit {
    font-size: 2rem;
  }
  .login-wrap .login-con .login-btns button {
    height: 2rem;
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .login-wrap .login-con .logo-tit .tit {
    font-size: 1.6rem;
  }
  .layer-wrap {
    min-width: 80%;
  }
  .layer-wrap.landing-pop1 .layer-cont img {
    width: 3rem;
    height: 3rem;
  }
  .layer-wrap.landing-pop1 .layer-cont .tit {
    font-size: 1.2rem;
  }
  .layer-wrap.landing-pop1 .layer-cont p {
    font-size: 0.8rem;
    word-wrap: break-word;
    word-break: keep-all;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .login-wrap .login-con {
    width: 80%;
    height: 3.5rem;
  }
  .login-wrap .login-con .logo-tit .tit {
    font-size: 1.5rem;
  }
  .login-wrap .login-con p {
    text-align: center;
  }
}
@media (max-width: 400px) {
  .login-wrap .login-con .logo-tit .tit {
    font-size: 1.2rem;
  }
}