body {
  background: #ffffff;
  margin: 0;
  padding: 0;
  height: 100%;
}
#container {
  padding: 0;
  min-height: 100svh;
  background: #ffffff;
  overflow-y: auto;
}
.signInForm {
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  padding: 148px 0 148px 0;
}
.signInBorderContainer {
  border: 1px solid #bdbdbd;
  border-radius: 40px;
  overflow: hidden;
}
.siteLogo {
  width: 277px;
  margin: 0 auto 0;
}

.signInFormInner {
  background: #fff;
  padding: 48px 68px;
  width: 616px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
#signIn h2 {
  text-align: center;
  line-height: 150%;
  letter-spacing: -0.04em;
  font-size: 32px;
  font-weight: 700;
  color: #2f2f2f;
}
#signIn .inp {
  margin-bottom: 12px;
}
#signIn .inp span {
  display: block;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 400;
  margin-bottom: 4px;
}
#signIn .btnSubmit {
  width: 100%;
}
#signIn .error {
  color: var(--primary-color);
  font-size: 12px;
}

#signIn .input_field {
  text-align: left;
  position: relative;
}
#signIn .input_field input {
  width: 100%;
  border: 1px solid #bdbdbd;
  height: 62px;
  border-radius: 20px;
  padding-left: 16px;
  font-size: 20px;
  font-weight: 500;
  box-sizing: border-box;
}
#signIn .input_field input::placeholder {
  color: #8c8c8c;
}
#signIn .input_field input:focus {
  border: 1px solid #4dae6d;
}
#signIn .input_field input::-ms-reveal,
#signIn .input_field input::-ms-clear {
  display: none;
}
#signIn .input_field label {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #2f2f2f;
  padding-bottom: 12px;
  line-height: 130%;
  letter-spacing: -0.04em;
}

#signIn .input_field .common-eye-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  background: url("/images/icon/visible_off_password.svg") center no-repeat;
  right: 50px;
  bottom: 11px;
}
#signIn .input_field .common-close-btn {
  position: absolute;
  width: 40px;
  height: 40px;
  background: url("/images/icon/close.svg") center no-repeat;
  right: 10px;
  bottom: 11px;
}

#signIn .input_field .common-eye-btn.is-active {
  background: url("/images/icon/visible_on_password.svg") center no-repeat;
}
#signIn .checkbox_field {
  text-align: left;
}
#signIn .checkbox_field label {
  font-size: 16px;
  font-weight: 500;
  color: #2f2f2f;
  line-height: 130%;
  letter-spacing: -0.04em;
}

#btnLogin {
  background: #4dae6d;
  border: none;
  font-size: 22px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.04em;
  padding: 16px 0;
  color: #fff;
  border-radius: 18px;
}

#btnLogin:disabled {
  background: #cdcdcd;
}

#btnSend {
  margin-top: 12px;
  height: 48px;
  background: var(--primary-color);
  border: none;
  font-size: 14px;
  color: #fff;
  border-radius: 4px;
}

.infoTxt strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: -0.04em;
  color: #4dae6d;
  text-align: left;
  display: block;
  margin-bottom: 8px;
}

.infoTxt p {
  font-size: 20px;
  font-weight: 500;
  color: #4f4f4f;
  text-align: left;
  display: block;
  line-height: 160%;
  letter-spacing: -0.04em;
  white-space: pre-line;
  word-break: keep-all;
}

.auth_wrap {
  margin-top: 4px;
  font-size: 0;
}
.auth_wrap .auth_inp_field {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
#signIn .input_field .auth_inp_field input {
  padding: 0 54px 0 12px;
  margin-bottom: 0;
  margin-top: 0;
}
.auth_wrap .auth_inp_field_timer {
  position: relative;
  flex: 1 0 0;
}

.auth_wrap .auth_inp_field .ww-btn {
  flex-shrink: 0;
  border-radius: 4px;
}

.auth_wrap .auth_timer {
  position: absolute;
  top: 20px;
  right: 12px;
  font-family: "Pretendard";
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  color: var(--primary-color);
}
.auth_wrap .auth_confirm {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  padding: 0;
  text-align: center;
}

/* =======================
   ✅ Header (리뉴얼 버전)
======================= */
.header-section {
  background: #ffffff;
  position: fixed;
  top: 0;
  z-index: 20;
  justify-content: space-between;
  width: 100%;
}

/* .header-connect {
  width: 100%;
  background-color: #ffffff;
  height: 80px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: inherit;
  box-shadow: none;
} */
.header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  height: 80px;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}
.header-logo {
  padding: 16px 0px;
}
.header-logo img {
  height: 48px;
  width: auto;
}
.header-lang {
  position: relative;
}

.header-controls {
  align-items: center;
  display: flex;
  gap: 8px;
  margin-left: auto;
  height: 80px;
}

.theme-toggle {
  display: none;
  height: 80px;
  margin-top: auto;
  padding: 4px;
}

.theme-toggle-btn {
  align-items: center;
  background: #ffffff;
  border: 1px solid #d2d2d2;
  border-radius: 16px;
  color: #4f4f4f;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  height: 37px;
  justify-content: center;
  letter-spacing: -0.04rem;
  line-height: 130%;
  min-width: 70px;
  padding: 0 10px;
}

.theme-toggle-btn.is-dark {
  background: #4f4f4f;
  border-color: #4f4f4f;
  color: #ffffff;
}

/* =======================
   ✅ Lang (리뉴얼 버전)
======================= */
.lang-dropdown {
  position: relative;
  display: inline-block;
  padding-bottom: 0;
  transition: height 0.3s ease;
  height: 80px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-top: auto;
  padding: 4px;
  width: 64px;
}
.lang-dropdown.open {
  height: 320px;
}
.lang-container {
  margin-top: 17.5px;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.lang-dropdown.open .lang-container {
  box-shadow: 0px 0px 8px 0px #00000033;
}
.lang-btn {
  background: white;
  font-weight: bold;
  cursor: pointer;
  height: 37px;
  flex-shrink: 0;
  padding: 8px 4px 8px 12px;
  display: flex;
  gap: 8px;
  align-items: center;
}
body.dark .lang-btn {
  background: transparent;
}
.lang-btn.open span {
  font-weight: 700;
}
body.dark .lang-btn.open {
  background: white;
}
.lang-btn span {
  line-height: 130%;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: -0.04rem;
  color: #4f4f4f;
}
body.dark .lang-btn span {
  color: #f1f1f1;
}

body.dark .lang-container .lang-btn:hover span,
.lang-container .lang-btn:hover span {
  color: #4dae6d;
}
.lang-arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}
.lang-arrow-icon.open {
  transform: rotate(180deg);
}
/* .lang-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 100%;
  left: 0;
  opacity: 0;
  pointer-events: none;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease;
} */
.lang-menu {
  background: white;
  opacity: 0;
  pointer-events: none;
}
.lang-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.lang-menu li a {
  display: block;
  padding: 8px 0px 8px 12px;
  color: #4f4f4f;
  font-weight: 500;
  font-size: 12px;
  line-height: 130%;
  letter-spacing: -0.04rem;
  text-align: left;
}

.lang-menu li a:hover {
  background-color: #4dae6d;
  color: white;
}

/* =======================
   ✅ Footer (리뉴얼 버전)
======================= */
.footer-connect {
  background-color: #4f4f4f;
  color: #9f9f9f;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 160%;
  padding: 50px 0;
  width: 100%;
}

.footer-connect .footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  padding: 0px 40px;
}

.footer-connect .footer-info {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.footer-connect .footer-info h6,
.footer-connect .footer-info a {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 160%;
  color: #9f9f9f;
  text-decoration: none;
}

.footer-connect .footer-info a:hover {
  text-decoration: underline;
}

.footer-connect .footer-copy {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 160%;
  color: #9f9f9f;
  white-space: nowrap;
}

/* ==========================
   ✅ App Store 버튼 영역 (완성본)
========================== */
.app-btns {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 16px; /* 버튼 간격 */
  margin-top: 24px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.app-btns .btn-store {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 18px;
  background-color: #f1f1f1;
  color: #9f9f9f;
  font-size: 16px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: -0.04em;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: none;
  overflow: hidden;
  padding: 16px 0px;
}

.app-btns .btn-store img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.btn-store .img-hover {
  display: none !important;
}

.btn-store:hover .img-default {
  display: none !important;
}

.btn-store:hover .img-hover {
  display: inline !important;
}
/* ✅ 아이콘별 시각적 보정 */
/* .app-btns .btn-store img[alt="Google play"] {
  transform: scale(0.8);
}

.app-btns .btn-store img[alt="App store"] {
  transform: scale(1.1);
} */

/* ✅ Hover 효과 */
.app-btns .btn-store:hover {
  background-color: #e4f5e6; /* 연한 초록 배경 */
  color: #469e63;
  transform: translateY(-2px);
}

/* ✅ 클릭시 눌림 효과 */
.app-btns .btn-store:active {
  transform: translateY(0);
}
.gnb-toggle-on .content {
  padding: 0;
  overflow: auto;
}
.content {
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  background-color: #fff;
}
.main-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main-section.login {
  background-image: url("/images/bg/Login_bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

body.dark {
  background: #d9d9d9;
}
/*
body.dark .main-section,
body.dark .main-section.login {
  background: #d9d9d9;
  background-image: none;
} */

.main-height {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 1280px) {
  .content {
    padding: 0px;
  }
}
.footer-mobile {
  display: none;
}
@media (max-width: 1440px) {
  .footer-connect .footer-inner {
    flex-direction: column;
    row-gap: 8px;
    align-items: flex-start;
  }
  .footer-connect .footer-inner {
    padding-left: 40px;
  }
  .footer-connect .footer-info {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }
}
/* 태블릿 사이즈 */
@media (max-width: 1024px) {
  .footer-connect .footer-inner {
    flex-direction: column;
    row-gap: 8px;
    align-items: flex-start;
  }
  .footer-connect .footer-info {
    flex-direction: column;
    row-gap: 8px;
    align-items: flex-start;
  }
}
/* 모바일 사이즈 */
@media (max-width: 768px) {
  .header-inner {
    padding: 0 16px;
    height: 48px;
  }
  .header-controls {
    height: 48px;
  }
  .theme-toggle {
    height: 48px;
  }
  .theme-toggle-btn {
    border-radius: 12px;
    font-size: 12px;
    height: 32px;
    min-width: 60px;
    padding: 0 8px;
  }
  .lang-dropdown {
    height: 48px;
  }
  .lang-container {
    margin-top: 4px;
  }
  .lang-arrow-icon {
    width: 16px;
    height: 16px;
  }
  .lang-btn {
    height: 32px;
    font-size: 12px;
  }
  .lang-btn span {
    font-size: 12px;
    line-height: 130%;
    letter-spacing: -0.04rem;
  }
  .lang-menu li a {
    font-size: 12px;
    line-height: 130%;
    letter-spacing: -0.04rem;
  }
  .main-section.login {
    background-image: none;
  }
  .footer-connect .footer-info h6,
  .footer-connect .footer-info a {
    font-size: 12px;
  }
  .footer-connect .footer-copy {
    font-size: 12px;
  }
  .footer-connect .footer-inner {
    padding: 0px 16px;
  }
  .footer-tablet {
    display: none;
  }
  .footer-mobile {
    display: block;
  }
  .footer-connect .footer-copy {
    font-size: 12px;
  }
  .footer-connect {
    padding: 40px 0;
  }
  .header-logo {
    padding: 12px 0px;
  }
  .header-logo img {
    height: 24px;
  }

  .header-section {
    flex: 0 0 48px;
  }
  .header-section.border-bottom {
    border-bottom: 1px solid #f1f1f1;
  }
  .signInBorderContainer {
    border: 0;
    border-radius: 0;
  }
  .signInFormInner {
    gap: 24px;
    padding: 50px 0;
    width: auto;
  }
  .signInFormInner.user {
    padding: 0;
  }
  .siteLogo {
    width: 142px;
  }
  #signIn h2 {
    font-size: 24px;
  }
  #signIn .input_field label {
    font-size: 16px;
  }
  #signIn .input_field input {
    font-size: 16px;
    border-radius: 16px;
  }
  #signIn {
    width: 100%;
    padding: 0 16px;
  }
  #btnLogin {
    font-size: 16px;
  }
  .infoTxt strong {
    font-size: 14px;
  }
  .infoTxt p {
    font-size: 14px;
  }
  .footer-connect .footer-inner {
    padding: 0px 16px;
  }
}
/* 높이 */
@media (min-height: 1100px) {
  .main-height {
    align-items: center;
  }
}
/* 높이 */
@media (min-height: 1000px) {
  .main-height.doctor-section {
    align-items: center;
  }
}
