@charset "UTF-8";
/*find_idpw*/
.find_idpw_wrap a:hover {
  outline: 2px solid var(--blue) !important;
}

.find_idpw_wrap a {
  gap: 50px;
}

/*find_id*/
.find_id_btn_wrap a {
  border-radius: 0.5rem !important;
  border: 1px solid var(--blue);
  padding: 1rem !important;
  height: 60px !important;
}

.find_id_btn_wrap a:hover {
  background-color: var(--blue);
  color: #ffffff !important;
}

.find_id_input_wrap input {
  margin-top: 5px;
  border: 1px solid #efefef !important;
  height: 60px;
  border-radius: 1rem;
  padding-left: 1rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.find_id_input_wrap input:focus {
  border: 1px solid var(--blue) !important;
  box-shadow: 0px 0px 10px rgba(0, 92, 213, 0.1) !important;
}

/*find_pw*/
.change_pw input {
  margin-top: 5px;
  border: 1px solid #efefef !important;
  height: 60px;
  border-radius: 1rem;
  padding-left: 1rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.change_pw input:focus {
  border: 1px solid var(--blue) !important;
  box-shadow: 0px 0px 10px rgba(0, 92, 213, 0.1) !important;
}

/*login 기업회원 사용xxxxx*/
.header_space2 {
  height: 200px;
}

.bg_lightgray {
  background-color: #f6f6f8;
}

.member_toggle {
  background-color: #eee;
  height: 60px;
  max-width: 500px !important;
  border-radius: 1rem;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.member_toggle span {
  height: 60px;
  border-radius: 1rem;
  position: absolute;
  top: 0;
  width: 50%;
  z-index: 5;
  transition: opacity 0.3s ease;
}

.general_mem {
  background-color: var(--blue);
  left: 0;
  opacity: 1; /* 기본적으로 일반회원은 보이도록 설정 */
}

.corp_mem {
  background-color: var(--orange);
  right: 0;
  opacity: 0; /* 기본적으로 기업회원은 보이지 않도록 설정 */
}

.member_toggle::before {
  content: "일반회원";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 60px;
  border-radius: 1rem;
  font-size: 1.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member_toggle::after {
  content: "기업회원";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 60px;
  border-radius: 1rem;
  font-size: 1.7rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*login_input*/
.login_input_wrap input {
  border: none !important;
  height: 60px;
  border-radius: 1rem;
  padding-left: 1rem;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.login_input_wrap input::placeholder {
  font-size: 1.2rem;
  color: #bbbbbb;
  font-weight: 600;
}

.login_input_wrap input:focus {
  border: 1px solid var(--blue) !important;
  box-shadow: 0px 0px 10px rgba(0, 92, 213, 0.2) !important;
}

.login_input_wrap {
  gap: 20px;
}

.login_btn_wrap div {
  height: 60px;
  border-radius: 1rem !important;
  background-color: var(--blue);
  transition: background-color 0.3s ease !important;
}

.login_radio {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.login_radio span {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 50%;
  background-color: white;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.login_radio input[type="checkbox"]:checked + span::after,
.login_radio input[type="radio"]:checked + span::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--blue);
}

/* 일반회원일 때 */
.login_radio input[type="checkbox"]:checked + span,
.login_radio input[type="radio"]:checked + span {
  border-color: var(--blue);
}

.login_radio input[type="checkbox"]:checked + span::after,
.login_radio input[type="radio"]:checked + span::after {
  background-color: var(--blue);
}

.login_input:focus,
.login_textarea:focus {
  border: 1px solid var(--blue) !important;
  box-shadow: 0px 0px 10px rgba(0, 92, 213, 0.2) !important;
}

/* 기업회원일 때 */
.login_radio.corp-mode input[type="checkbox"]:checked + span,
.login_radio.corp-mode input[type="radio"]:checked + span {
  border-color: var(--orange); /* 기업회원일 때 --orange로 변경 */
}

.login_radio.corp-mode input[type="checkbox"]:checked + span::after,
.login_radio.corp-mode input[type="radio"]:checked + span::after {
  background-color: var(--orange); /* 기업회원일 때 --orange로 변경 */
}

.login_input.corp-mode:focus,
.login_textarea.corp-mode:focus {
  border: 1px solid var(--orange) !important;
  box-shadow: 0px 0px 10px rgba(255, 177, 21, 0.2) !important;
}

/* 로그인 버튼 색상 */
.login_btn_wrap.corp-mode .w100 {
  background-color: var(--orange); /* 기업회원일 때 --orange 배경 */
}

.login_btn_wrap:not(.corp-mode) .w100 {
  background-color: var(--blue); /* 일반회원일 때 --blue 배경 */
}

/*회원가입, ID PW찾기*/
.login_bottom_wrap {
  gap: 20px;
}

/*signup*/
.signup_type {
  gap: 60px;
}

.signup_wrap {
  width: 250px;
  height: auto;
  border-radius: 1rem;
}

.signup_wrap.on {
  outline: 2px solid var(--blue);
}

.signup_wrap:hover {
  outline: 2px solid var(--blue);
  transition: none !important;
}

.signup_info ul {
  display: block;
  width: fit-content;
}

.signup_info_text {
  gap: 50px;
  display: flex;
  width: fit-content;
}

.signup_info a {
  display: flex;
  align-items: center;
}

/*signup_process*/

.signup_process_wrap {
  max-width: 720px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.process_img {
  width: 100px;
  height: 100px;
  padding: 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process_box {
  z-index: 5;
}

.process_img {
  background-color: #ffffff;
}

.process_img.blue {
  background-color: var(--blue);
}

.process_img.lightblue {
  background-color: #a7c3fa;
}

.process_text {
  max-width: 100px !important;
}

.terms_title {
  display: flex;
  align-items: center;
}

.terms_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.terms_content_left {
  display: flex;
  align-items: center;
}

.signup_process_wrap::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  border-top: 1px dashed #bbb;
  top: 50px;
}

.signup_btn_wrap .k6000_btn {
  height: 60px;
  border-radius: 1rem !important;
  transition: background-color 0.3s ease !important;
}

@media screen and (max-width: 500px) {
  .signup_process_wrap {
    display: none !important;
  }

  .signup_btn_wrap div {
    width: 100% !important;
  }
}

/*verify*/
.verify_wrap {
  gap: 30px;
}
.verify_box {
  width: calc((100% - 30px) / 2);
  padding: 2rem;
  border-radius: 1rem;
  background-color: #ffffff;
  border: 1px solid #eee;
}

/* .verify_box h3 {
  height: 50px;
} */

.verify_content {
  height: 200px;
  display: flex;
  justify-content: space-between;
}

.verify_img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.verify_text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.verify_btn {
  height: 60px !important;
}

@media screen and (max-width: 768px) {
  .verify_box,
  .verify_box.m_auto.w70 {
    width: 100% !important;
    height: auto;
  }

  .verify_content {
    height: auto;
  }
}

/*signup_form*/
.signup_form .id_info .info_top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.signup_form_top ul {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.signup_form {
  border-radius: 1.5rem;
  background-color: #ffffff;
  box-shadow: 0px 0px 50px rgba(0, 92, 213, 0.1);
  padding: 2rem;
}

.signup_inner_box {
  background-color: #f6f6f8;
  padding: 2.5rem 2rem;
  gap: 60px;
}

.signup_form input {
  height: 50px !important;
  padding: 0 0.7rem;
  border-radius: 0.5rem;
  border: none !important;
  background-color: #fff;
  outline: none;
  font-size: 1rem;
  font-weight: 600;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.signup_form input::placeholder,
.signup_form textarea::placeholder {
  color: #bbbbbb;
  font-weight: 600;
}

.signup_form input:focus,
.signup_form textarea:focus {
  border: 1px solid var(--blue) !important;
  box-shadow: 0px 0px 10px rgba(0, 92, 213, 0.2) !important;
}

.signup_input {
  position: relative;
}

.signup_input p {
  margin-top: 0.3rem;
}

.id_p {
  position: absolute;
  top: 100%;
  left: 0;
}

.id_check_btn {
  height: 50px;
  min-width: 90px !important;
  border-radius: 0.4rem !important;
}

.id_check_btn:hover {
  box-shadow: none !important;
}

.signup_input.phone {
  gap: 5px;
}

.phone_wrap {
  gap: 20px;
}

input.bg_eee {
  pointer-events: none !important;
}

.signup_city_select {
  position: relative;
  z-index: 10;
}

.signup_email_select {
  position: relative;
  z-index: 5;
}

.signup_city_dropdown_menu,
.signup_email_dropdown_menu {
  position: absolute;
  width: 100%;
  max-height: 0px;
  overflow-y: hidden;
  transition: max-height 0.3s ease;
  margin: 0 auto;
  box-shadow: 5px 5px 10px rgba(0, 92, 213, 0.05);
  background-color: #ffffff;
}

.signup_city_select_title,
.signup_email_select_title {
  margin: 0 auto;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2em;
  border: 1px solid #ccc;
  border-radius: 10px;
  cursor: pointer;
  background-color: #ffffff;
}

.signup_city_dropdown_menu li,
.signup_email_dropdown_menu li {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1em;
  margin: 7px 0;
  cursor: pointer;
}

.signup_city_select_title.checked,
.signup_email_select_title.checked {
  border: 1px solid #5188f5;
  box-shadow: 5px 5px 10px rgba(0, 92, 213, 0.05);
}

.signup_city_select_title.checked .drop_down_icon,
.signup_email_select_title.checked .drop_down_icon {
  transform: rotate(180deg);
  transition: none !important;
}

.signup_city_dropdown_menu::-webkit-scrollbar,
.signup_email_dropdown_menu::-webkit-scrollbar {
  width: 8px;
}

.signup_city_dropdown_menu::-webkit-scrollbar-thumb,
.signup_email_dropdown_menu::-webkit-scrollbar-thumb {
  border-radius: 10px;
}

.signup_city_dropdown_menu::-webkit-scrollbar-track,
.signup_email_dropdown_menu::-webkit-scrollbar-track {
  border-radius: 10px;
}

.signup_email_wrap {
  gap: 5px;
}

.signup_btn_wrap2 {
  gap: 10px;
}

.signup_btn_wrap2 div {
  min-width: 300px;
  height: 60px;
  border-radius: 1rem !important;
}

.add_child_wrap div{
	height: 60px;
	width: 100%;
}

@media screen and (max-width: 600px){
	.add_child_wrap{
		flex-direction: column;
	 }
}

@media screen and (max-width: 768px) {
	.number_left.w30{
	width: 100% !important;
	display: block !important;
	}
  .signup_inner_box
    div:not(.btn):not(.signup_city_select_title):not(
      .signup_email_select_title
    ):not(.signup_email_wrap) {
    align-items: self-start !important;
  }

  .signup_inner_box
    div:not(.number_left):not(.signup_city_select_title):not(
      .signup_email_select_title
    ) {
    flex-direction: column !important;
  }

  .signup_inner_box div p {
    width: 100% !important;
  }

  .signup_input {
    width: 100% !important;
  }

  .id_check_btn {
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 8px;
    width: 100% !important;
  }

  .phone_wrap {
    width: 100% !important;
  }

  .signup_input.phone {
    width: 100% !important;
  }

  .signup_input.phone input {
    width: 100% !important;
  }
  .signup_input.phone span {
    margin: 0 auto !important;
  }

  .signup_city_select,
  .signup_email_select {
    width: 100% !important;
  }

  .signup_email_wrap input {
    width: 100% !important;
    margin-bottom: 8px;
  }
}

@media screen and (max-width: 600px) {
  .signup_btn_wrap2 {
    flex-direction: column;
  }

  .signup_btn_wrap2 div {
    width: 100% !important;
  }
}

/*signup5*/
.user_info_content {
  gap: 150px;
}

.add_service_radio_wrap {
  gap: 30px;
}

/*checkbox*/
.square_checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
}

.square_checkbox input[type="checkbox"] {
  display: none;
}

.square_checkbox .checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #bbbbbb;
  margin-right: 8px;
  display: inline-block;
  position: relative;
  border-radius: 4px;
}

.square_checkbox input[type="checkbox"]:checked + .checkmark {
  border-color: var(--blue);
}

.square_checkbox input[type="checkbox"]:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--blue);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.add_service_table {
  width: 100%;
  border-collapse: collapse;
}

.add_service_table_text {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  height: 100px;
  overflow-y: auto;
}

.kakao_wrap {
  gap: 30px;
}

/*250522*/
.add_service > ul li {
  font-size: 1rem;
  margin-top: 0.5rem;
}

@media screen and (max-width: 900px) {
  .user_info_content {
    gap: 50px !important;
    margin: 0 auto !important;
  }
  .add_service_title {
    flex-direction: column !important;
  }

  .add_service_radio_wrap {
    margin-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .kakao_text h3 {
    font-size: 1.2rem !important;
  }
}

@media screen and (max-width: 550px) {
  .add_service_title h2 {
    font-size: 1.2rem !important;
  }
}

@media screen and (max-width: 375px) {
  .kakao_text h3 {
    font-size: 1rem !important;
    text-align: center;
  }

  .kakao_img {
    display: flex;
    justify-content: center;
    margin: 0 auto;
  }

  .kakao_img img {
    width: 80%;
  }

  .kakao_wrap {
    flex-direction: column !important;
  }

  .verify_img {
    display: none !important;
  }

  .verify_text {
    width: 100% !important;
  }
}
