@charset "UTF-8";
/* ---------- 공통클래스 ----------- */
.bg-light-navy {
  background-color: #393a59;
}

.bg-light-grey {
  background-color: #efeff4 !important;
}

.bg-gold-gradient {
  background: linear-gradient(to right, #f5f1e0, #d7ca96) !important;
}

.overflow-y-hidden {
  overflow-y: hidden;
}

.w-0 {
  width: 0;
  white-space: nowrap;
}

.z-up {
  z-index: 999;
}

.z-1 {
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.z-3 {
  z-index: 3;
}

.error {
  border: 1px solid red !important;
}

.error-message {
  color: red !important;
  font-size: 12px !important;
  display: none;
}

.visible {
  display: block;
}

.btn-bg {
  background-color: #aaaaaa;
}

.btn-active {
  background: linear-gradient(to right, #21206e, #01022e) !important;
}

.btn-inactive {
  background-color: #aaaaaa;
}

.btn-light-purple {
  background-color: #d3d3f6;
}

.basic-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 1rem;
  font-size: 1.2rem;
  cursor: pointer;
}

.signup-input {
  height: 46px;
  font-size: 1.1rem;
  border-radius: 1rem;
}

.cursor-pointer {
  cursor: pointer;
}

.password-eye {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.passwordCheck-eye {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.box {
  background: white;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
}

.modal-box {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  min-width: 450px;
}
.modal-box .close-btn {
  position: absolute;
  right: 5%;
  top: 5%;
}
.modal-box .content-text {
  font-size: 1.2rem;
}

body:before {
  content: "";
  position: fixed;
  opacity: 0.5;
  width: 100%;
  height: 100%;
  display: none;
}

.dark-box:before {
  display: block;
}

.showdiv {
  display: block !important;
  z-index: 9;
}

@media (min-width: 990px) {
  .position-lg-absolute {
    position: absolute;
  }
}
body {
  background-image: url(../images/png/login-bg-pc.png);
  background-color: #efeff4;
}

header {
  border-radius: 1rem;
  height: 80px;
}
header h1 {
  font-size: 2rem;
}
header button {
  border-radius: 2rem;
}
header .header-btn {
  border: 2px solid;
  border-radius: 2rem;
}
header .get-start-btn {
  background: linear-gradient(to right, #f5f1e0, #d7ca96) !important;
  display: inline-block;
}
header .mobile-view-show {
  position: fixed;
  top: 0;
  bottom: 0px;
  left: 0;
  right: 20%;
  z-index: 1000;
  background-color: #01022e;
  padding: 1rem;
  transition: 0.5s;
}
header .mobile-view-hide {
  position: fixed;
  top: 0;
  bottom: 0px;
  left: -40%;
  right: 140%;
  z-index: 1000;
  background-color: #01022e;
  padding: 1rem;
  transition: 0.5s;
}

.folded-container {
  background-color: #f4f4f7;
  position: absolute;
  left: 25%;
  right: 25%;
  top: 100px;
  bottom: 0;
  border-radius: 3rem 3rem 0 0;
  box-shadow: 1px -5px 16px -1px rgba(130, 130, 130, 0.75);
  -webkit-box-shadow: 1px -5px 16px -1px rgba(130, 130, 130, 0.75);
  -moz-box-shadow: 1px -5px 16px -1px rgba(130, 130, 130, 0.75);
}
.folded-container .folded-container-input,
.folded-container .folded-container-button {
  height: 56px;
  font-size: 1.1rem;
  border-radius: 1rem;
}

@media (max-width: 990px) {
  .folded-container {
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.circle-checkbox {
  position: relative;
  width: 18px;
  height: 18px;
  appearance: none;
  background-color: #fff;
  border: 2px solid #ccc;
  /* 둥근 체크박스에서 네모로 변경됨. 클래스명은 유지시켜야됨. */
  border-radius: 5px;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s, border-color 0.3s;
}

/* 체크된 상태에서 네이비 색으로 변경 */
.circle-checkbox:checked {
  background-color: navy;
  border-color: navy;
}

/* 체크박스가 체크되지 않은 상태에서 효과 추가 */
.circle-checkbox:hover {
  border-color: #888;
}

/* 체크박스 내부의 체크 마크 */
.circle-checkbox:checked::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.membership-cancellation-modal-box, .payment-cancellation-modal-box {
 z-index: 100;
}
.to-faq {
  font-size: 2rem;
  color: #1f203e;
}

footer .footer-box-container {
    padding: 30px 0 !important;
}
.footer__text {
    position: relative;
    display: inline-block;
    padding-right: 10px;
}

.footer__text:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: 0;
}
.util-btn {
    position: fixed;
    right: 4rem;
    bottom: 4rem;
}
#open-chatbot {
    border-radius: 50%;
    border: 3px solid #fff;
}

.util-btn img {
    display: block;
    margin: 1.5rem 0;
}