/* 로그인 페이지 기본 스타일 */
#login_page {
  margin: 0 auto;
  padding: 100px 0;
  background-color: #f3f4f5;
  min-height: 100vh;
  width: 100%;
}

.wrap {
  margin-bottom: 0 !important;
}

/* 2단 레이아웃 컨테이너 */
#login_page .login_container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 38px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 왼쪽: 로그인 박스 */
#login_page .login_box {
  width: 100%;
  max-width: 511px;
  background-color: #ffffff;
  border-radius: 32px;
  padding: 64px 40px;
  box-sizing: border-box;
}

/* 탭 스타일 */
#login_page .login_tabs {
  display: flex;
  background-color: #f1f1f1;
  border-radius: 24.5px;
  padding: 4px;
  margin-bottom: 40px;
  position: relative;
  width: 100%;
  height: 49px;
  box-sizing: border-box;
}

/* 슬라이더 스타일 (::before 가상 요소 사용) */
#login_page .login_tabs::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: 41px;
  background-color: #ffffff;
  border-radius: 20.5px;
  transition: transform 0.3s ease;
  z-index: 1;
  pointer-events: none;
  transform: translateX(0);
}

#login_page .login_tabs.guest_active::before {
  transform: translateX(calc(100% - 1px));
}

#login_page .tab_item {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  font-family: 'Pre-R', 'Noto Sans KR', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #999896;
  cursor: pointer;
  border-radius: 20.5px;
  transition: color 0.3s ease, font-weight 0.3s ease;
  letter-spacing: -0.2px;
  line-height: 21px;
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

#login_page .tab_item.active {
  color: #303030;
  font-weight: 400;
}

/* 로그인 폼 영역 */
#login_page .login_form_wrap {
  margin-bottom: 0;
}

#login_page .input_group {
  margin-bottom: 20px;
}

#login_page .input_group.n2 {
  margin-bottom: 0;
}

#login_page .input_group.phone {
  margin-bottom: 52px;
}

#login_page .input_label {
  display: block;
  font-family: 'Pre-R', 'Noto Sans KR', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  line-height: 21px;
  text-align: left;
}

#login_page .login_input {
  width: 100%;
  height: 49px;
  padding: 14px 16px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  font-family: 'Pre-R', 'Noto Sans KR', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  outline: none;
  box-sizing: border-box;
  letter-spacing: -0.2px;
  line-height: 21px;
}

#login_page .login_input::placeholder {
  color: #d9d9d9;
}

#login_page .login_input:focus {
  border-color: #303030;
}

/* 자동로그인 */
#login_page .auto_login_wrap {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  margin-top: 8px;
  cursor: pointer;
}

#login_page .auto_login_wrap input.b_checkbox {
  display: none;
}

#login_page .auto_login_wrap .b_check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 1px solid #dddddd;
  border-radius: 6px;
  margin-right: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

#login_page .auto_login_wrap .b_check i {
  opacity: 0;
  color: #fff;
  font-size: 12px;
  transition: opacity 0.2s ease;
}

#login_page .auto_login_wrap input.b_checkbox:checked + .b_check {
  background-color: #303030;
  border-color: #303030;
}

#login_page .auto_login_wrap input.b_checkbox:checked + .b_check i {
  opacity: 1;
}

#login_page .auto_login_wrap .b_check_txt {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 13px;
  font-weight: 350;
  color: #000000;
  cursor: pointer;
  line-height: 15.6px;
}

/* 로그인 버튼 */
#login_page .login_btn {
  width: 100%;
  height: 49px;
  background-color: #303030;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14px;
  font-weight: 350;
  cursor: pointer;
  margin-bottom: 16px;
  margin-top: 0;
  transition: background-color 0.2s ease;
  line-height: 16.8px;
}

#login_page #guest_login_form .login_btn {
  margin-bottom: 0;
}


/* 로그인 링크 */
#login_page .login_links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

#login_page .login_link {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 13px;
  font-weight: 350;
  color: #2f2f2f;
  text-decoration: none;
  padding: 0 16px;
  line-height: 15.6px;
  letter-spacing: 0;
}

#login_page .login_links .divider {
  width: 1px;
  height: 14px;
  background-color: #dddddd;
  display: inline-block;
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

/* SNS 로그인 */
#login_page .sns_login_wrap {
  margin-top: 40px;
}

#login_page .sns_divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

#login_page .divider_line {
  flex: 1;
  height: 1px;
  background-color: #dddddd;
  max-width: 166px;
}

#login_page .sns_text {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 14px;
  font-weight: 350;
  color: #777777;
  padding: 0 12px;
  line-height: 16.8px;
}

#login_page .sns_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

#login_page .sns_btn {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

#login_page .sns_btn.kakao_btn {
  background-color: #f9e64d;
}

#login_page .sns_btn.kakao_btn img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

#login_page .sns_btn.naver_btn {
  background-color: #14c871;
  color: #ffffff;
  font-family: 'Pre-B', 'Noto Sans KR', sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.1368px;
  line-height: 36px;
}

/* 오른쪽: 혜택 섹션 */
#login_page .benefits_section {
  width: 100%;
  max-width: 409px;
  padding-top: 36px;
}

#login_page .benefits_header {
  margin-bottom: 28px;
}

#login_page .benefits_header h2 {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #333333;
  line-height: 42px;
  margin: 0;
  display: block;
  text-align: left;
}

#login_page .benefits_header h2 br {
  line-height: 42px;
}

#login_page .benefits_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
}

#login_page .benefit_card {
  background-color: #ffffff;
  border: 1px solid #f0f0f0;
  border-radius: 18px;
  width: 100%;
  height: 100px;
  padding: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

#login_page .benefit_icon {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

#login_page .benefit_icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

#login_page .benefit_icon i {
  font-size: 25px;
  color: #888888;
}

#login_page .benefit_title {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #333333;
  line-height: 15.54px;
  text-align: center;
  margin: 0;
}

#login_page .benefit_title_light {
  font-family: 'Noto Sans KR', sans-serif;
  font-weight: 400;
  font-size: 13px;
}





/* 기존 스타일 유지 (회원가입, 아이디 찾기 등 다른 페이지용) */
#join_page .join_list_topbg h2 {
  font-family: 'mon_M';
  font-size: 25px;
  margin: 100px auto 50px;
  width: 100%;
  display: inline-block;
}

#join_page .join {
  width: 700px;
  box-shadow: 0 30px 60px rgba(43, 43, 46, 0.08);
  background-color: #fff;
  padding: 80px 50px;
  margin: 0 auto;
  border-radius: 30px;
  display: inline-block;
}

#join_page .join li {
  width: 100%;
}

#join_page .join li.join_btn_wrap {
  margin-top: 50px;
  display: inline-block;
}

#join_page .join li .text_box {
  padding: 10px;
  border: 1px solid #ededed;
  border-radius: 8px;
  width: 100%;
}

#join_page .join li .text_box textarea {
  resize: none;
  border: 0;
  outline: none;
  width: 100%;
  height: 100px;
  font-size: 12px;
}

#join_page .join li label.textarea-wrap {
  padding: 10px;
}

#join_page .join li label.checkbox-wrap {
  padding: 20px 0;
}

#join_page .join li .checkbox-wrap .input {
  position: relative;
  background-image: url(/img/join/checkbox.svg);
  background-repeat: no-repeat;
  cursor: pointer;
  padding-left: 28px;
  text-align: left;
  background-size: contain;
}

#join_page .join li .checkbox-wrap.on .input {
  background-image: url(/img/join/checkbox-on.svg);
}

#join_page .join li .checkbox-wrap .input input {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}

#join_page .join li .checkbox-wrap .input p {
  margin-bottom: 0;
}

#join_page .join li:nth-of-type(3) span label:last-of-type {
  background-color: #f5f5fa;
  border-radius: 8px;
  margin-bottom: 20px;
}

#join_page .join_btn_wrap label {
  display: block;
  width: 32%;
  float: left;
  margin-right: 2%;
}

#join_page .join_btn_wrap label:last-of-type {
  margin: 0;
}

#join_page .join_btn_wrap .input input {
  border-radius: 30px;
  cursor: pointer;
  border: none;
  outline: none;
  width: 100%;
  padding: 18px 0;
  display: inline-block;
  color: #fff;
}

#join_page .join_btn_wrap .btn_join {
  background-color: #303030;
}

#join_page .join_btn_wrap .btn_naver {
  background-color: #09bc00;
}

#join_page .join_btn_wrap .btn_kakao {
  background-color: #f5dc00;
}

/* 자사회원가입 페이지 */
#member_page .list_topbg h2 {
  font-family: 'mon_M';
  font-size: 25px;
  margin: 100px auto 50px;
  width: 100%;
  display: inline-block;
}

#member_page .list_topbg {
  padding: 0;
  height: auto;
}

#member_page .join_wrap {
  width: 700px;
  box-shadow: 0 30px 60px rgba(43, 43, 46, 0.08);
  background-color: #fff;
  padding: 80px;
  margin: 0 auto;
  border-radius: 30px;
  display: inline-block;
}

.join_form_title {
  font-size: 16px;
  font-family: 'noto_m';
  text-align: left;
}

#member_page .join_inner:first-of-type {
  margin-bottom: 50px;
}

#member_page .join_inner ul li {
  display: flex;
  text-align: left;
  padding: 15px;
  align-items: center;
  border-bottom: 1px dotted #ededed;
}

#member_page .join_inner ul li:last-of-type {
  border-bottom: none;
  padding: 15px 15px 0 15px;
}

#member_page .join_inner ul li .left {
  width: 150px;
}

#member_page .join_inner ul li .right {
  width: calc(100% - 150px);
}

#member_page .join_inner ul li .right input {
  border: none;
  border-radius: 8px;
  outline: none;
  background-color: #f5f5fa;
  padding: 15px;
  width: 100%;
  color: #999;
}

#member_page .join_inner ul li .right input::placeholder {
  color: #999;
}

#member_page .join_inner ul li .right input[type="radio"] {
  display: none;
}

#member_page .join_inner ul li .right label {
  display: inline-block;
  padding: 10px 15px;
  background-color: #f5f5fa;
  color: #999;
  margin-right: 10px;
  margin-bottom: 5px;
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
}

#member_page .join_inner ul li .right label.on {
  background-color: #555;
  color: #fff;
}

#member_page .join_inner ul li .right p {
  margin-top: 10px;
  font-size: 12px;
  color: #7a7a7a;
}

#member_page .join_inner ul li .right>div {
  display: inline-block;
  width: 100%;
}

#member_page .join_inner ul li .right #real_id input {
  padding: 15px 105px 15px 15px;
}

#member_page .join_inner ul li.id_form .right {
  position: relative;
}

#member_page .join_inner ul li.id_form .right #valid_btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 85px;
}

#member_page .join_inner ul li.id_form .right #valid_btn input {
  background-color: #555;
  color: #fff;
  cursor: pointer;
  padding: 5px;
  border-radius: 6px;
  font-size: 13px;
}

#member_page .join_inner ul li .right .number_inner {
  display: flex;
  align-items: center;
}

#member_page .join_inner ul li .number_wrap span {
  padding: 2%;
}

#member_page .con_num_wrap {
  margin-top: 10px;
  text-align: right;
}

#member_page .confirm_submit {
  background-color: #555;
  color: #fff;
  display: inline-block;
  padding: 5px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
  width: 85px;
  text-align: center;
}

#member_page .confirm_number {
  display: none;
  position: relative;
}

#member_page .confirm_number #confirm_number {
  padding: 15px 145px 15px 15px;
}

#member_page .join_inner ul li .number_wrap #confirm_submit.on {
  position: absolute;
  right: 10px;
  bottom: 10px;
}

#member_page .join_inner ul li .number_wrap span#confirm_time {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  color: #777;
}

#member_page .join_all {
  margin-top: 50px;
}

#member_page .join_all input {
  float: none;
  display: inline-block;
  border-radius: 30px;
  padding: 18px 0;
  cursor: pointer;
  width: 140px;
}

#member_page .join_all>p {
  margin-bottom: 30px;
}

#member_page .join_all .join_button {
  background-color: #303030;
  border: 1px solid #303030;
  color: #fff;
}

#member_page .join_all .join_btn_naver {
  background-color: #09bc00;
  border: 1px solid #09bc00;
}

#member_page .join_all .join_btn_kakao {
  background-color: #f5dc00;
  border: 1px solid #f5dc00;
}

#member_page .join_all .cancel_button {
  border: 1px solid #eee;
  margin-left: 10px;
  background-color: #fff;
}

#member_page .con_num_wrap {
  position: relative;
}

/* 아이디 비번 찾기 */
#find_page .inner_wrap {
  margin: 100px auto 30px;
  display: inline-block;
  width: 1000px;
}

#find_page .inner_wrap .flex_wrap {
  display: flex;
}

#find_page .lost_wrap {
  box-shadow: 0 30px 60px rgba(43, 43, 46, 0.08);
  background-color: #fff;
  padding: 50px;
  margin: 0 auto;
  border-radius: 30px;
  display: inline-block;
}

#find_page .lost_wrap:first-of-type {
  margin-right: 20px;
}

#find_page .lost_wrap .title {
  font-size: 19px;
  margin-bottom: 25px;
}

#find_page .lost_wrap .title span {
  font-family: 'mon_M';
  font-size: 20px;
}

#find_page .lost_wrap .lost_box ul li {
  display: flex;
  align-items: center;
  padding: 15px;
  text-align: left;
  border-bottom: 1px dotted #ededed;
}

#find_page .lost_wrap .lost_box ul li:last-of-type {
  border: none;
}

#find_page .lost_wrap .lost_box ul li .left {
  width: 150px;
}

#find_page .lost_wrap .lost_box ul li .right {
  width: calc(100% - 150px);
}

#find_page .lost_wrap .lost_box ul li .right input {
  border: none;
  outline: none;
  background-color: #f5f5fa;
  padding: 15px;
  width: 100%;
  color: #999;
  border-radius: 8px;
}

#find_page .lost_wrap .lost_box ul li .right .notice {
  color: #e5362c;
  margin-top: 5px;
  display: inline-block;
  font-size: 13px;
}

#find_page .lost_wrap .none_box {
  height: 80px;
  visibility: hidden;
}

#find_page .lost_wrap .input>input {
  width: 140px;
  background-color: #303030;
  color: #fff;
  padding: 18px 0;
  border-radius: 30px;
  outline: none;
  border: none;
  margin-top: 30px;
  cursor: pointer;
}