.root_container .btn {
  box-shadow: initial;
}
.root_container .container {
  grid-template-columns: 1fr 1.5fr;
}
.root_container .right_side {
  justify-content: flex-start;
  padding-top: 44px;
}
.root_container .right_side .step_header {
  margin-bottom: 28px;
}
.root_container .right_side .step_header .join_title {
  font-size: 20px;
  font-weight: 700;
  color: var(--grayscale-color-90);
  margin-bottom: 20px;
}
.root_container .right_side .step_header .step_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.root_container .right_side .step_header .step_wrap .circle_wrap {
  display: flex;
  align-items: center;
  width: fit-content;
}
.root_container .right_side .step_header .step_wrap .step_connector {
  width: 48px;
  height: 2px;
  background: var(--grayscale-color-20);
  flex-shrink: 0;
  transition: background 0.3s;
}
.root_container .right_side .step_header .step_wrap .step_connector.done {
  background: #2D6A4F;
}
.root_container .right_side .step_header .step_wrap .step_circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
  transition: all 0.3s;
}
.root_container .right_side .step_header .step_wrap .step_circle.active {
  background: #2D6A4F;
  color: var(--grayscale-color-0);
  box-shadow: 0 0 0 4px rgba(27, 67, 50, 0.15);
}
.root_container .right_side .step_header .step_wrap .step_circle.done {
  background: #2D6A4F;
  color: var(--grayscale-color-0);
}
.root_container .right_side .step_header .step_wrap .step_circle.inactive {
  background: var(--grayscale-color-20);
  color: var(--grayscale-color-50);
}
.root_container .right_side .step_header .step_wrap .label_wrap {
  display: flex;
  align-items: center;
  gap: 40px;
}
.root_container .right_side .step_header .step_wrap .step_label {
  font-size: 11px;
  color: var(--grayscale-color-50);
  text-align: center;
}
.root_container .right_side .step_header .step_wrap .step_label.active {
  color: #2D6A4F;
  font-weight: 600;
}
.root_container .right_side .step_header .step_wrap .step_label.done {
  color: #2D6A4F;
}
.root_container .right_side #joinForm {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.root_container .right_side .form_panel {
  display: none;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.root_container .right_side .form_panel.active {
  display: flex;
  animation: join_fade_in 0.22s ease;
  flex: 1;
}
.root_container .right_side .form_panel .input_box .input_text {
  height: 40px;
}
.root_container .right_side .form_panel .input_box .input_text.required {
  border: 1px solid var(--grayscale-color-20);
  background-color: var(--grayscale-color-0);
}
.root_container .right_side .form_panel .input_box .input_text.required:focus {
  border: 1px solid var(--primary-color-50);
}
.root_container .right_side .form_panel .verify_btn, .root_container .right_side .form_panel .check_login_id_btn {
  height: 40px;
  flex-shrink: 0;
}
.root_container .right_side .form_panel .verified_icon {
  display: none;
  color: var(--grayscale-color-30);
  font-size: 22px;
  flex-shrink: 0;
}
.root_container .right_side .form_panel .verified_icon[data-shown=true] {
  display: inline-flex;
  color: #2D6A4F;
}
.root_container .right_side .form_panel .password_field {
  position: relative;
  flex: 1;
  min-width: 0;
}
.root_container .right_side .form_panel .password_field .input_text {
  width: 100%;
  padding-right: 38px;
}
.root_container .right_side .form_panel .toggle_password_btn {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  cursor: pointer;
  color: var(--grayscale-color-50);
}
.root_container .right_side .form_panel .toggle_password_btn:hover {
  background: var(--grayscale-color-10);
  color: var(--grayscale-color-70);
}
.root_container .right_side .form_panel .toggle_password_btn[data-shown=true] {
  color: #2D6A4F;
}
.root_container .right_side .form_panel .toggle_password_btn .material-symbols-outlined {
  font-size: 18px;
}
.root_container .right_side .form_panel input[type=password]::-ms-reveal,
.root_container .right_side .form_panel input[type=password]::-ms-clear {
  display: none;
}
.root_container .right_side .form_panel .next_btn {
  margin-top: 5px;
}
@keyframes join_fade_in {
  from {
    opacity: 0;
    transform: translateX(8px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.root_container .right_side .required_mark {
  color: var(--error-color, #d9534f);
  margin-left: 2px;
}
.root_container .right_side .input_box_wrap .input_box {
  flex: 1;
  margin-bottom: 0;
}
.root_container .right_side .pwd_strength {
  display: flex;
  gap: 4px;
  margin-top: 6px;
  padding: 0 10px;
}
.root_container .right_side .pwd_strength .strength_bar {
  flex: 1;
  height: 3px;
  border-radius: var(--radius-sm);
  background: var(--grayscale-color-20);
  transition: background 0.3s;
}
.root_container .right_side .pwd_strength .strength_bar.level_1 {
  background: var(--error-color, #d9534f);
}
.root_container .right_side .pwd_strength .strength_bar.level_2 {
  background: #f0ad4e;
}
.root_container .right_side .pwd_strength .strength_bar.level_3 {
  background: #2D6A4F;
}
.root_container .right_side .divider {
  border: none;
  border-top: 1px solid var(--grayscale-color-15);
  margin: 18px 0;
}
.root_container .right_side .section_divider {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  font-size: 12px;
  color: var(--grayscale-color-50);
  font-weight: 500;
}
.root_container .right_side .section_divider::before, .root_container .right_side .section_divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--grayscale-color-15);
}
.root_container .right_side .agree_row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding-bottom: 16px;
}
.root_container .right_side .agree_label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--grayscale-color-60);
  cursor: pointer;
  line-height: 1.55;
}
.root_container .right_side .agree_label input {
  accent-color: #2D6A4F;
  flex-shrink: 0;
}
.root_container .right_side .agree_view_btn {
  background: transparent;
  border: 0;
  padding: 0;
  font-size: 13px;
  color: #2D6A4F;
  cursor: pointer;
}
.root_container .right_side .agree_view_btn:hover {
  text-decoration: underline;
}
.root_container .right_side .primary_btn {
  width: 100%;
  height: 50px;
  background: #2D6A4F;
  border-radius: var(--radius-lg);
  font-size: 15px;
  font-weight: 600;
  justify-content: center;
}
.root_container .right_side .primary_btn:hover {
  background: var(--primary-color-80);
}
.root_container .right_side .outline_btn {
  background: transparent;
  border: 1.5px solid var(--grayscale-color-20);
  color: var(--grayscale-color-60);
  height: 50px;
  font-size: 15px;
  border-radius: var(--radius-lg);
  flex: 1;
  justify-content: center;
}
.root_container .right_side .outline_btn:hover {
  background: var(--grayscale-color-10);
}
.root_container .right_side .btn_row {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.root_container .right_side .btn_row .primary_btn {
  flex: 1.5;
  width: auto;
}
.root_container .right_side .login_hint {
  text-align: left;
  margin-top: auto;
  font-size: 13px;
  color: var(--grayscale-color-50);
}
.root_container .right_side .login_hint a {
  color: #2D6A4F;
  font-weight: 600;
  text-decoration: none;
}
.root_container .right_side .login_hint a:hover {
  text-decoration: underline;
}
.root_container .right_side .complete_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  padding: 20px 0;
}
.root_container .right_side .complete_wrap .complete_icon {
  width: 68px;
  height: 68px;
  background: #2D6A4F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 24px rgba(27, 67, 50, 0.25);
}
.root_container .right_side .complete_wrap .complete_icon .icon {
  font-size: 32px;
  color: var(--grayscale-color-0);
  font-variation-settings: "FILL" 1, "wght" 700;
}
.root_container .right_side .complete_wrap .complete_title {
  font-size: 20px;
  font-weight: 700;
  color: var(--grayscale-color-90);
  margin-bottom: 10px;
}
.root_container .right_side .complete_wrap .complete_desc {
  font-size: 14px;
  color: var(--grayscale-color-50);
  line-height: 1.8;
  margin-bottom: 24px;
}
.root_container .right_side .complete_wrap .complete_btn {
  width: auto;
  padding: 0 36px;
  text-decoration: none;
}

.modal_bg.agree_modal .modal {
  width: min(96vw, 480px);
  padding: 24px;
  justify-content: flex-start;
  border: 1px solid var(--grayscale-color-15);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
}
.modal_bg.agree_modal .modal_header {
  padding: 0 0 14px;
  margin-bottom: 14px;
}
.modal_bg.agree_modal .modal_header .modal_title {
  font-size: 17px;
  font-weight: 600;
  color: var(--grayscale-color-90);
}
.modal_bg.agree_modal .agree_terms {
  max-height: 60vh;
  overflow-y: auto;
  font-size: 13px;
  color: var(--grayscale-color-65, var(--grayscale-color-70));
  line-height: 1.7;
  padding-right: 4px;
}
.modal_bg.agree_modal .agree_terms h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--grayscale-color-80);
  margin: 14px 0 4px;
}
.modal_bg.agree_modal .agree_terms h4:first-child {
  margin-top: 0;
}
.modal_bg.agree_modal .agree_terms p {
  margin: 0;
}
.modal_bg.agree_modal .agree_footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  padding-top: 16px;
  margin-top: 14px;
  border-top: 1px solid var(--grayscale-color-15);
}
.modal_bg.agree_modal .agree_footer .btn {
  height: 34px;
  padding: 0 18px;
  font-size: 13px;
  border-radius: var(--radius);
  box-shadow: none;
}
.modal_bg.agree_modal .agree_footer .cancel_btn {
  background: transparent;
  border: 1px solid var(--grayscale-color-20);
  color: var(--grayscale-color-70);
}
.modal_bg.agree_modal .agree_footer .cancel_btn:hover {
  background: var(--grayscale-color-10);
}
.modal_bg.agree_modal .agree_footer .agree_btn {
  background: #2D6A4F;
  color: var(--grayscale-color-0);
  font-weight: 600;
}
.modal_bg.agree_modal .agree_footer .agree_btn:hover {
  background: var(--primary-color-80);
}

/*# sourceMappingURL=join.css.map */
