/*
 * 회원가입 (1단계: 유형 선택 등)
 */

#g_CONTENT {
  padding-top: 0;
}

.content.signup_step1 {
  max-width: 1080px;
  width: 100%;
  margin: 30px auto 0;
  padding: 0 20px;
  box-sizing: border-box;
}

.signup_step1 .top_area {
  position: relative;
  margin-bottom: 25px;
  padding-top: 70px;
  font-size: 14px;
  color: var(--color-gray8, #636363);
}

.signup_step1 .top_area h1 {
  margin: 0 0 20px;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #434343;
  text-align: center;
}

.signup_step1 .join_progress {
  margin: 0 auto;
  width: 100%;
}

.signup_step1 .join_progress ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.signup_step1 .join_progress ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup_step1 .join_progress ul li span {
  width: 28px;
  height: 28px;
  border: 2px solid #f0f0f0;
  border-radius: 50%;
  font-size: 15px;
  color: #c6c6c6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup_step1 .join_progress ul li.on span {
  color: #fff;
  border-color: var(--color-base, #159EFD);
  background-color: var(--color-base, #159EFD);
  font-weight: bold;
}

.signup_step1 .join_progress ul li::after {
  content: "···";
  padding: 0 8px;
  color: #c6c6c6;
}

.signup_step1 .join_progress ul li:last-child::after {
  content: "";
}

.signup_step1 .join_type {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0 0 15px;
}

.signup_step1 .join_type li {
  display: flex;
  width: 100%;
  max-width: 400px;
  height: 85px;
  align-items: center;
}

.signup_step1 label.custom_check {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: 2px solid #ddd;
  border-radius: 10px;
  font-size: 15px;
  text-align: center;
  color: #444;
  padding: 0 30px;
  box-sizing: border-box;
}

.signup_step1 label.custom_check span {
  font-size: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.signup_step1 label.custom_check span span:last-child {
  font-size: 14px;
  color: var(--color-gray8, #636363);
  font-weight: 400;
}

.signup_step1 label.custom_check input {
  appearance: none;
  position: absolute;
  opacity: 0;
}

.signup_step1 label.custom_check .checked_img {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  font-size: 20px;
  background-color: #ddd;
  border-radius: 50%;
  margin-left: auto;
}

/* 미선택: 투명 테두리로 체크 모양 숨김 / 선택: 우·하단 흰 테두리 + 45° 회전 = 정방향 ✓ */
.signup_step1 label.custom_check .checked_img::after {
  content: "";
  display: block;
  box-sizing: border-box;
  width: 6px;
  height: 12px;
  margin-top: -4px;
  border: solid transparent;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.signup_step1 label.custom_check:has(input:checked) {
  border-color: var(--color-base, #159EFD);
}

.signup_step1 label.custom_check:has(input:checked) span span:first-child {
  color: var(--color-base, #159EFD);
}

.signup_step1 label.custom_check:has(input:checked) .checked_img {
  background-color: var(--color-base, #159EFD);
}

.signup_step1 label.custom_check:has(input:checked) .checked_img::after {
  border-color: #fff;
}

.signup_step1 .dn_text {
  max-width: 400px;
  width: 100%;
  margin: 15px auto 30px;
  padding: 0 10px;
  box-sizing: border-box;
  font-size: 14px;
  color: var(--color-font-gray, #767676);
  text-align: center;
}

.signup_step1 .dn_text dd {
  margin: 0;
  text-align: center;
  line-height: 1.5;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.signup_step1 .dn_text dd + dd {
  margin-top: 6px;
}

.signup_step1 #next_btn {
  display: block;
  width: 100%;
  max-width: 400px;
  line-height: 50px;
  margin: 0 auto 50px;
  padding: 0;
  text-align: center;
  background-color: var(--color-base, #159EFD);
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}

.signup_step1 #next_btn:hover {
  opacity: 0.9;
}

/* 회원가입 2단계: 약관 동의 (원본 아이템매니아 동일) */
.content.signup_step2 {
  overflow: hidden;
  width: 1080px;
  max-width: 100%;
  margin: 30px auto 0;
  padding: 0 20px 50px;
  box-sizing: border-box;
}

.signup_step2 .top_area {
  position: relative;
  margin-bottom: 25px;
  padding-top: 70px;
  font-size: 14px;
  color: #636363;
}

.signup_step2 .top_area h1 {
  margin: 0 0 20px;
  font-size: 24px;
  letter-spacing: -0.12em;
  color: #434343;
  text-align: center;
}

.signup_step2 .join_progress ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.signup_step2 .join_progress ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup_step2 .join_progress ul li span {
  width: 28px;
  height: 28px;
  border: 2px solid #f0f0f0;
  border-radius: 50%;
  font-size: 15px;
  color: #c6c6c6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup_step2 .join_progress ul li.on span {
  color: #fff;
  border-color: var(--color-base, #159EFD);
  background-color: var(--color-base, #159EFD);
  font-weight: bold;
}

.signup_step2 .join_progress ul li.complete span {
  color: #fff;
  border-color: #b0dfff;
  background-color: #b0dfff;
}

.signup_step2 .join_progress ul li::after {
  content: "···";
  padding: 0 8px;
  color: #c6c6c6;
}

.signup_step2 .join_progress ul li:last-child::after {
  content: "";
}

.signup_step2 .agree_step2_body {
  width: 400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.signup_step2 .agree_check {
  width: 100%;
  min-height: 65px;
  margin: 0 0 40px;
  box-sizing: border-box;
}

.signup_step2 .agree_list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.signup_step2 .agree_check .agree_list_all {
  padding: 0;
  margin: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.signup_step2 .agree_check .agree_check_label {
  min-height: 65px;
  padding: 0 20px;
  align-items: center;
  background: var(--color-gray1, #fbfbfb);
  border: 1px solid var(--color-gray3, #ddd);
  border-radius: 10px;
  box-sizing: border-box;
}

.signup_step2 .agree_check_label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-font, #2e2e2e);
}

.signup_step2 .agree_check_label input {
  position: absolute;
  opacity: 0;
}

.signup_step2 .agree_check_custom {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 2px solid #c6c6c6;
  border-radius: 4px;
  background: #fff;
}

.signup_step2 .agree_check_label:has(input:checked) .agree_check_custom {
  border-color: var(--color-base, #159EFD);
  background: var(--color-base, #159EFD);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2' d='M1 5l3 3 7-7'/%3E%3C/svg%3E");
  background-size: 12px 10px;
  background-repeat: no-repeat;
  background-position: center;
}

.signup_step2 .agree_check_row {
  width: 100%;
  margin-bottom: 5px;
  box-sizing: border-box;
}

.signup_step2 .agree_check_row .agree_check_label.custom_check.small {
  display: flex;
  align-items: center;
  height: 19px;
  min-height: 19px;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
  color: var(--color-font, #2e2e2e);
  cursor: pointer;
  box-sizing: border-box;
}

.signup_step2 .agree_check_row .agree_check_label.custom_check.small .agree_check_custom {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.signup_step2 .agree_check_row .agree_check_label.custom_check.small .agree_label_text {
  font-size: 14px;
  font-weight: 600;
}

.signup_step2 .clause_box {
  width: 100%;
  height: 65px;
  overflow-y: auto;
  padding: 12px 16px;
  margin-bottom: 20px;
  border: 1px solid var(--color-gray3, #ddd);
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
}

.signup_step2 .clause_box .agree_links {
  margin: 0 0 8px;
  font-size: 13px;
}

.signup_step2 .clause_box .agree_content {
  max-height: none;
  margin-bottom: 0;
  padding: 0;
  border: none;
  font-size: 13px;
  line-height: 1.5;
}

.signup_step2 .agree_links {
  margin: 0 0 10px;
  font-size: 14px;
}

.signup_step2 .agree_links a {
  color: var(--color-base, #159EFD);
  text-decoration: none;
}

.signup_step2 .agree_links a:hover {
  text-decoration: underline;
}

.signup_step2 .agree_links_sep {
  margin: 0 8px;
  color: var(--color-gray4, #c6c6c6);
}

.signup_step2 .agree_content {
  max-height: 280px;
  overflow-y: auto;
  padding: 20px;
  margin-bottom: 16px;
  border: 1px solid var(--color-gray3, #ddd);
  border-radius: 10px;
  background: #fff;
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-font, #2e2e2e);
}

.signup_step2 .agree_content h3 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 600;
}

.signup_step2 .agree_content h4 {
  margin: 12px 0 6px;
  font-size: 14px;
  font-weight: 600;
}

.signup_step2 .agree_content p {
  margin: 0 0 8px;
}

.signup_step2 .agree_more {
  margin-top: 12px;
  font-size: 13px;
  color: var(--color-font-gray, #767676);
}

.signup_step2 .agree_required {
  margin-top: 8px;
}

.signup_step2 .agree_error {
  margin: 0 0 16px;
  padding: 12px;
  background: #fff5f5;
  border-radius: 8px;
  font-size: 14px;
  color: #c00;
}

.signup_step2 .signup_step_actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  width: 100%;
}

.signup_step2 .agree_step2_body .btn_prev {
  display: inline-block;
  font-size: 14px;
  color: var(--color-font-gray, #767676);
  text-decoration: none;
}

.signup_step2 .agree_step2_body .btn_prev:hover {
  color: var(--color-base, #159EFD);
  text-decoration: none;
}

.signup_step2 .agree_step2_body .btn_next {
  width: 100%;
  height: 50px;
  line-height: 50px;
  padding: 0;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  background: var(--color-base, #159EFD);
  cursor: pointer;
}

.signup_step2 .btn_next:hover {
  opacity: 0.9;
}

/* 회원가입 3단계: 본인인증 선택 */
.content.signup_step3 {
  max-width: 1080px;
  width: 100%;
  margin: 30px auto 0;
  padding: 0 20px 50px;
  box-sizing: border-box;
}

.signup_step3 .top_area {
  position: relative;
  margin-bottom: 25px;
  padding-top: 70px;
  font-size: 14px;
  color: var(--color-gray8, #636363);
}

.signup_step3 .top_area h1 {
  margin: 0 0 20px;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #434343;
  text-align: center;
}

.signup_step3 .join_progress ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.signup_step3 .join_progress ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup_step3 .join_progress ul li span {
  width: 28px;
  height: 28px;
  border: 2px solid #f0f0f0;
  border-radius: 50%;
  font-size: 15px;
  color: #c6c6c6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup_step3 .join_progress ul li.on span {
  color: #fff;
  border-color: var(--color-base, #159EFD);
  background-color: var(--color-base, #159EFD);
  font-weight: bold;
}

.signup_step3 .join_progress ul li.complete span {
  color: #fff;
  border-color: #b0dfff;
  background-color: #b0dfff;
  font-size: 0;
}

.signup_step3 .join_progress ul li.complete span::after {
  content: "✓";
  font-size: 14px;
  font-weight: bold;
}

.signup_step3 .join_progress ul li::after {
  content: "···";
  padding: 0 8px;
  color: #c6c6c6;
}

.signup_step3 .join_progress ul li:last-child::after {
  content: "";
}

.signup_step3 .certify_box {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 24px 0;
  box-sizing: border-box;
}

.signup_step3 .verify_options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 20px;
  max-width: 100%;
}

.signup_step3 .verify_option {
  display: block;
  cursor: pointer;
  width: 100%;
}

.signup_step3 .verify_option input {
  position: absolute;
  opacity: 0;
}

.signup_step3 .verify_option_inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 16px 20px;
  border: 2px solid var(--color-gray3, #e0e0e0);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.2s, color 0.2s;
}

.signup_step3 .verify_option:has(input:checked) .verify_option_inner {
  border-color: var(--color-base, #159EFD);
  background: #fff;
}

.signup_step3 .verify_option_icon {
  display: block;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.signup_step3 .verify_option_label {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-gray8, #636363);
}

.signup_step3 .verify_option:has(input:checked) .verify_option_label {
  color: var(--color-base, #159EFD);
}

.signup_step3 .verify_option_check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 2px solid var(--color-gray3, #d0d0d0);
  border-radius: 50%;
  background: #fff;
  position: relative;
  transition: border-color 0.2s, background 0.2s;
}

.signup_step3 .verify_option_check::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid transparent;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.signup_step3 .verify_option:has(input:checked) .verify_option_check {
  border-color: var(--color-base, #159EFD);
  background: var(--color-base, #159EFD);
}

.signup_step3 .verify_option:has(input:checked) .verify_option_check::after {
  border-color: #fff;
  opacity: 1;
}

.signup_step3 .verify_note {
  margin: 0 0 24px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--color-font-gray, #767676);
  text-align: center;
  background: var(--color-gray2, #f5f5f5);
  border-radius: 10px;
}

.signup_step3 .verify_error {
  margin: 0 0 16px;
  padding: 12px;
  background: #fff5f5;
  border-radius: 8px;
  font-size: 14px;
  color: #c00;
  text-align: center;
}

.signup_step3 .signup_step_actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin-top: 30px;
  max-width: 100%;
}

.signup_step3 .btn_prev {
  display: inline-block;
  text-align: center;
  font-size: 14px;
  color: var(--color-font-gray, #767676);
  text-decoration: none;
}

.signup_step3 .btn_prev:hover {
  color: var(--color-base, #159EFD);
  text-decoration: none;
}

.signup_step3 .btn_next {
  width: 100%;
  line-height: 52px;
  padding: 0;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  background: var(--color-base, #159EFD);
  cursor: pointer;
}

.signup_step3 .btn_next:hover {
  opacity: 0.9;
}

/* ---------- 휴대폰 인증 페이지 (3단계 진행 중) ---------- */
.content.signup_phone_verify_page {
  max-width: 1080px;
  width: 100%;
  margin: 30px auto 0;
  padding: 0 20px;
  box-sizing: border-box;
}

.signup_phone_verify_page .top_area {
  position: relative;
  margin-bottom: 25px;
  padding-top: 70px;
  text-align: center;
}

.signup_phone_verify_page .top_area h1 {
  margin: 0 0 12px;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #434343;
}

.signup_phone_verify_page .verify_page_desc {
  margin: 0 0 20px;
  font-size: 15px;
  color: var(--color-gray8, #636363);
}

.signup_phone_verify_page .join_progress ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.signup_phone_verify_page .join_progress ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup_phone_verify_page .join_progress ul li span {
  width: 28px;
  height: 28px;
  border: 2px solid #f0f0f0;
  border-radius: 50%;
  font-size: 15px;
  color: #c6c6c6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup_phone_verify_page .join_progress ul li.on span {
  color: #fff;
  border-color: var(--color-base, #159EFD);
  background-color: var(--color-base, #159EFD);
  font-weight: bold;
}

.signup_phone_verify_page .join_progress ul li.complete span {
  color: #fff;
  border-color: #b0dfff;
  background-color: #b0dfff;
  font-size: 0;
}

.signup_phone_verify_page .join_progress ul li.complete span::after {
  content: "✓";
  font-size: 14px;
  font-weight: bold;
}

.signup_phone_verify_page .join_progress ul li::after {
  content: "···";
  padding: 0 8px;
  color: #c6c6c6;
}

.signup_phone_verify_page .join_progress ul li:last-child::after {
  content: "";
}

.signup_phone_verify_page .phone_verify_box {
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 24px 50px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid var(--color-gray3, #e0e0e0);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.signup_phone_verify_page .phone_verify_input_list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.signup_phone_verify_page .phone_verify_input_list li {
  margin-bottom: 16px;
}

.signup_phone_verify_page .phone_verify_label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gray9, #4f4f4f);
}

.signup_phone_verify_page .phone_verify_input {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  font-size: 16px;
  color: #2e2e2e;
  border: 1px solid var(--color-gray3, #c6c6c6);
  border-radius: 10px;
  outline: none;
  box-sizing: border-box;
}

.signup_phone_verify_page .phone_verify_input:focus {
  border-color: var(--color-base, #159EFD);
}

.signup_phone_verify_page .phone_verify_input::placeholder {
  color: #9f9f9f;
}

.signup_phone_verify_page .phone_verify_select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  background-color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%239f9f9f' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.signup_phone_verify_page .phone_verify_select:focus {
  border-color: var(--color-base, #159EFD);
}

.signup_phone_verify_page .phone_verify_select:invalid,
.signup_phone_verify_page .phone_verify_select option[value=""] {
  color: #9f9f9f;
}

.signup_phone_verify_page .btn_primary_full {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  margin-bottom: 0;
  padding: 0;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  background: var(--color-base, #159EFD);
  cursor: pointer;
}

.signup_phone_verify_page .btn_primary_full:hover {
  opacity: 0.9;
}

.signup_phone_verify_page .phone_verify_send_actions {
  margin-top: 0;
}

.signup_phone_verify_page .btn_primary_full:disabled {
  background: var(--color-gray6, #9f9f9f);
  cursor: not-allowed;
}

.signup_phone_verify_page .phone_verify_resend_cooldown {
  margin: 12px 0 0;
  font-size: 14px;
  color: var(--color-gray8, #636363);
  text-align: center;
}

.signup_phone_verify_page .phone_verify_divider {
  height: 1px;
  margin: 28px 0;
  background: var(--color-gray3, #e0e0e0);
}

.signup_phone_verify_page .verify_messages {
  margin-top: 20px;
}

.signup_phone_verify_page .verify_error {
  margin: 0 0 8px;
  padding: 12px;
  background: #fff5f5;
  border-radius: 8px;
  font-size: 14px;
  color: #c00;
  text-align: center;
}

/* ---------- 회원가입 4단계: 정보 입력 ---------- */
.content.signup_step4 {
  max-width: 1080px;
  width: 100%;
  margin: 30px auto 0;
  padding: 0 20px;
  box-sizing: border-box;
}

.signup_step4 .top_area {
  position: relative;
  margin-bottom: 25px;
  padding-top: 70px;
}

.signup_step4 .top_area h1 {
  margin: 0 0 20px;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: #434343;
  text-align: center;
}

.signup_step4 .join_progress ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.signup_step4 .join_progress ul li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.signup_step4 .join_progress ul li span {
  width: 28px;
  height: 28px;
  border: 2px solid #f0f0f0;
  border-radius: 50%;
  font-size: 15px;
  color: #c6c6c6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.signup_step4 .join_progress ul li.on span {
  color: #fff;
  border-color: var(--color-base, #159EFD);
  background-color: var(--color-base, #159EFD);
  font-weight: bold;
}

.signup_step4 .join_progress ul li.complete span {
  color: #fff;
  border-color: #b0dfff;
  background-color: #b0dfff;
  font-size: 0;
}

.signup_step4 .join_progress ul li.complete span::after {
  content: "✓";
  font-size: 14px;
  font-weight: bold;
}

.signup_step4 .join_progress ul li::after {
  content: "···";
  padding: 0 8px;
  color: #c6c6c6;
}

.signup_step4 .join_progress ul li:last-child::after {
  content: "";
}

.signup_step4 .signup_step4_body {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 0 0;
  box-sizing: border-box;
}

.signup_step4 .field_group {
  margin-bottom: 20px;
}

.signup_step4 .field_hint {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--color-font-gray, #767676);
}

.signup_step4 .input_wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 0 44px 0 16px;
  border: 1px solid var(--color-gray3, #e0e0e0);
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
}

.signup_step4 .input_wrap_eye {
  padding-right: 64px;
}

.signup_step4 .input_wrap input {
  flex: 1;
  min-width: 0;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 15px;
  color: var(--color-font, #2e2e2e);
  outline: none;
}

.signup_step4 .input_wrap input::placeholder {
  color: var(--color-gray5, #aaa);
}

.signup_step4 .input_clear,
.signup_step4 .input_eye {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  margin-top: -11px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-gray3, #e8e8e8);
  cursor: pointer;
  flex-shrink: 0;
}

.signup_step4 .input_clear {
  right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 4.586L10.293.293l1.414 1.414L7.414 6l4.293 4.293-1.414 1.414L6 7.414l-4.293 4.293-1.414-1.414L4.586 6 .293 1.707 1.707.293 6 4.586z'/%3E%3C/svg%3E");
  background-size: 8px 8px;
  background-repeat: no-repeat;
  background-position: center;
}

.signup_step4 .input_eye {
  right: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.signup_step4 .input_eye.on {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M17.94 17.94A10.07 10.07 0 0 1 12 20c-7 0-11-8-11-8a18.45 18.45 0 0 1 5.06-5.94M9.9 4.24A9.12 9.12 0 0 1 12 4c7 0 11 8 11 8a18.5 18.5 0 0 1-2.16 3.19m-6.72-1.07a3 3 0 1 1-4.24-4.24'/%3E%3Cline x1='1' y1='1' x2='23' y2='23'/%3E%3C/svg%3E");
}

.signup_step4 .input_wrap_eye .input_clear {
  right: 8px;
}

.signup_step4 .input_wrap_eye .input_eye {
  right: 34px;
}

.signup_step4 .field_error {
  margin: 6px 0 0;
  font-size: 13px;
  color: #c00;
}

.signup_step4 .field_group_email .email_row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.signup_step4 .field_group_email .input_wrap_email_local {
  flex: 1;
  min-width: 100px;
}

.signup_step4 .field_group_email .input_wrap_email_domain {
  flex: 1;
  min-width: 120px;
  position: relative;
}

.signup_step4 .email_domain_wrap .email_domain_arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  margin-top: -4px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--color-gray6, #888);
  pointer-events: none;
}

.signup_step4 .email_domain_wrap.is_open .email_domain_arrow {
  border-top: none;
  border-bottom: 6px solid var(--color-gray6, #888);
  margin-top: -10px;
}

.signup_step4 .email_domain_dropdown {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  margin-top: 2px;
  max-height: 240px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--color-gray3, #e0e0e0);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  z-index: 10;
  padding: 4px 0;
  box-sizing: border-box;
}

.signup_step4 .email_domain_dropdown.is_open {
  display: block;
}

.signup_step4 .email_domain_option {
  padding: 10px 16px;
  font-size: 15px;
  color: var(--color-font, #2e2e2e);
  cursor: pointer;
  line-height: 1.4;
}

.signup_step4 .email_domain_option:first-child {
  background: var(--color-gray2, #f5f5f5);
}

.signup_step4 .email_domain_option:hover {
  background: var(--color-gray2, #f0f0f0);
}

.signup_step4 .email_at {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-font, #2e2e2e);
}

.signup_step4 .btn_dup {
  flex-shrink: 0;
  height: 48px;
  padding: 0 20px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: var(--color-gray8, #555);
  cursor: pointer;
}

.signup_step4 .btn_dup:hover {
  background: var(--color-font, #333);
}

.signup_step4 .btn_dup:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.signup_step4 .email_dup_message {
  margin: 8px 0 0;
  font-size: 13px;
  min-height: 1.4em;
}

.signup_step4 .email_dup_message.ok {
  color: var(--color-base, #159EFD);
}

.signup_step4 .email_dup_message.error {
  color: #c00;
}

.signup_step4 .signup_step_actions {
  margin-top: 30px;
}

.signup_step4 .btn_submit {
  width: 100%;
  height: 52px;
  padding: 0;
  border: none;
  border-radius: 10px;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  background: var(--color-base, #159EFD);
  cursor: pointer;
}

.signup_step4 .btn_submit:hover {
  opacity: 0.9;
}

.content.signup_complete {
  max-width: 1080px;
  width: 100%;
  margin: 30px auto 0;
  padding: 0 20px 80px;
  box-sizing: border-box;
}

.signup_complete__top {
  padding-top: 70px;
  text-align: center;
}

.signup_complete__welcome {
  margin: 0;
  font-size: 23px;
  line-height: 1.45;
  letter-spacing: -0.03em;
  color: #434343;
  font-weight: 700;
}

.signup_complete .join_progress {
  margin-top: 18px;
}

.signup_complete .join_progress ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.signup_complete .join_progress ul li {
  position: relative;
}

.signup_complete .join_progress ul li span {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #caebff;
  box-shadow: inset 0 0 0 1px rgba(21, 158, 253, 0.08);
}

.signup_complete .join_progress ul li span::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 8px;
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.signup_complete__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: 48px 0 0;
}

.signup_complete__visual {
  position: relative;
  width: 360px;
  height: 290px;
  margin: 0 auto 14px;
}

.signup_complete__visual_bg {
  position: absolute;
  left: 50%;
  top: 54px;
  width: 216px;
  height: 216px;
  margin-left: -108px;
  border-radius: 50%;
  background: radial-gradient(circle at 45% 45%, #edf8ff 0%, #d9efff 65%, #c5e7ff 100%);
}

.signup_complete__cone {
  position: absolute;
  left: 118px;
  top: 112px;
  width: 128px;
  height: 146px;
  border-radius: 68px 68px 24px 24px;
  transform: rotate(-38deg);
  background: linear-gradient(180deg, #bf4cff 0%, #8125d0 100%);
  box-shadow: 0 20px 30px rgba(118, 63, 190, 0.24);
  overflow: hidden;
}

.signup_complete__cone::before {
  content: "";
  position: absolute;
  left: 52px;
  top: -44px;
  width: 26px;
  height: 56px;
  border-radius: 20px;
  background: linear-gradient(180deg, #de7cff 0%, #b21bf2 100%);
  transform: rotate(10deg);
}

.signup_complete__cone::after {
  content: "";
  position: absolute;
  left: 16px;
  top: 38px;
  width: 150px;
  height: 38px;
  background: linear-gradient(180deg, #ffd600 0%, #ffbb00 100%);
  transform: rotate(3deg);
}

.signup_complete__cone_tip {
  position: absolute;
  left: 50%;
  bottom: -16px;
  width: 26px;
  height: 38px;
  margin-left: -13px;
  border-radius: 0 0 15px 15px;
  background: linear-gradient(180deg, #8a2be0 0%, #b91fff 100%);
}

.signup_complete__cone_band {
  position: absolute;
  right: 20px;
  top: 22px;
  width: 26px;
  height: 98px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(-7deg);
}

.signup_complete__coin {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff3af 0%, #ffd443 42%, #f3ac00 100%);
  box-shadow: 0 10px 18px rgba(236, 171, 0, 0.22);
}

.signup_complete__coin::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  border: 3px solid rgba(206, 139, 0, 0.55);
}

.signup_complete__coin--1 {
  left: 175px;
  top: 94px;
  width: 62px;
  height: 62px;
}

.signup_complete__coin--2 {
  right: 82px;
  top: 124px;
  width: 44px;
  height: 44px;
}

.signup_complete__coin--3 {
  left: 143px;
  bottom: 40px;
  width: 52px;
  height: 52px;
}

.signup_complete__confetti {
  position: absolute;
  border-radius: 999px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

.signup_complete__confetti--1 {
  left: 80px;
  top: 138px;
  width: 18px;
  height: 18px;
  background: linear-gradient(180deg, #8f87ff 0%, #6c5fe8 100%);
}

.signup_complete__confetti--2 {
  right: 88px;
  top: 86px;
  width: 22px;
  height: 22px;
  background: linear-gradient(180deg, #ffd43b 0%, #ffb400 100%);
}

.signup_complete__confetti--3 {
  right: 64px;
  top: 138px;
  width: 17px;
  height: 17px;
  background: linear-gradient(180deg, #ff7f7c 0%, #ff4343 100%);
}

.signup_complete__confetti--4 {
  right: 120px;
  bottom: 78px;
  width: 24px;
  height: 24px;
  background: linear-gradient(180deg, #b45cff 0%, #ff40ba 100%);
}

.signup_complete__text {
  text-align: center;
}

.signup_complete__text h1 {
  margin: 0;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: -0.03em;
  color: #343434;
}

.signup_complete__text p {
  margin: 12px 0 0;
  font-size: 22px;
  line-height: 1.5;
  letter-spacing: -0.03em;
  color: #4b4b4b;
}

.signup_complete__text p span {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  color: #666;
}

.signup_complete__actions {
  width: 100%;
  max-width: 360px;
  margin-top: 34px;
}

.signup_complete__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(180deg, #32a8ff 0%, #159efd 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(21, 158, 253, 0.2);
}

.signup_complete__btn:hover {
  opacity: 0.92;
}

@media (max-width: 767px) {
  .content.signup_complete {
    padding: 0 16px 56px;
  }

  .signup_complete__top {
    padding-top: 36px;
  }

  .signup_complete__welcome {
    font-size: 18px;
  }

  .signup_complete .join_progress ul {
    gap: 12px;
  }

  .signup_complete__panel {
    min-height: auto;
    padding-top: 32px;
  }

  .signup_complete__visual {
    width: 280px;
    height: 230px;
  }

  .signup_complete__visual_bg {
    top: 44px;
    width: 180px;
    height: 180px;
    margin-left: -90px;
  }

  .signup_complete__cone {
    left: 84px;
    top: 90px;
    width: 108px;
    height: 126px;
  }

  .signup_complete__coin--1 {
    left: 140px;
    top: 80px;
    width: 52px;
    height: 52px;
  }

  .signup_complete__coin--2 {
    right: 54px;
    top: 108px;
    width: 38px;
    height: 38px;
  }

  .signup_complete__coin--3 {
    left: 110px;
    bottom: 32px;
    width: 44px;
    height: 44px;
  }

  .signup_complete__confetti--1 {
    left: 58px;
    top: 112px;
  }

  .signup_complete__confetti--2 {
    right: 64px;
    top: 74px;
  }

  .signup_complete__confetti--3 {
    right: 42px;
    top: 116px;
  }

  .signup_complete__confetti--4 {
    right: 88px;
    bottom: 66px;
  }

  .signup_complete__text h1 {
    font-size: 24px;
  }

  .signup_complete__text p {
    font-size: 18px;
  }

  .signup_complete__text p span {
    font-size: 15px;
  }

  .signup_complete__actions {
    max-width: 320px;
    margin-top: 28px;
  }
}
