/* TrendyPicker Auth
   /member/login → member/login.html
   /member/find → member/find.html
   /member/register → member/register.html

   1. Page chrome / tokens
   2. Login shell / tabs / form
   3. Find ID / Reset / Register
   4. Responsive — last
*/

/* ——— Page chrome ——— */
html.is-auth-page,
body.is-login-page,
body.is-auth-page,
html.is-auth-page #layout_wrap,
body.is-login-page #layout_wrap,
body.is-auth-page #layout_wrap,
html.is-auth-page #layout_body,
body.is-login-page #layout_body,
body.is-auth-page #layout_body {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  background: #12091f;
}

html.is-auth-page .subpage_wrap,
body.is-login-page .subpage_wrap,
body.is-auth-page .subpage_wrap,
html.is-auth-page .subpage_wrap .subpage_container,
body.is-login-page .subpage_wrap .subpage_container,
body.is-auth-page .subpage_wrap .subpage_container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  float: none;
  background: transparent;
}

html.is-auth-page .title_container,
body.is-login-page .title_container,
body.is-auth-page .title_container {
  padding: 0;
}

.bo-login-main {
  --bo-purple: #7b3fe4;
  --bo-purple-deep: #6a34c9;
  --bo-text: #171320;
  --bo-muted: #8f86a0;
  --bo-line: #ece7f4;
  position: relative;
  box-sizing: border-box;
  display: grid;
  justify-items: center;
  align-content: center;
  width: 100%;
  min-height: 70vh;
  margin: 0;
  padding: 48px 16px 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 55% at 18% 22%, rgba(155, 107, 255, 0.45), transparent 58%),
    radial-gradient(ellipse 60% 50% at 86% 18%, rgba(123, 63, 228, 0.38), transparent 55%),
    radial-gradient(ellipse 50% 40% at 70% 78%, rgba(90, 40, 180, 0.28), transparent 60%),
    linear-gradient(160deg, #1a0f2e 0%, #12091f 48%, #0c0814 100%);
  font-family: Pretendard, "Noto Sans KR", sans-serif;
  color: var(--bo-text);
}

/* ——— Login shell / tabs / form ——— */
.bo-login-shell {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(100%, 400px);
  margin: 0 auto;
  padding: 32px 28px 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  background: rgba(252, 250, 255, 0.97);
  backdrop-filter: blur(28px) saturate(1.35);
  -webkit-backdrop-filter: blur(28px) saturate(1.35);
  box-shadow:
    0 0 0 1px rgba(214, 196, 255, 0.18),
    0 0 28px rgba(155, 107, 255, 0.35),
    0 0 64px rgba(123, 63, 228, 0.28),
    0 0 120px rgba(123, 63, 228, 0.16);
}

.bo-login-inner {
  width: 100%;
}

.bo-login-head {
  margin: 0 0 24px;
  text-align: center;
}

.bo-login-kicker {
  margin: 0 0 8px;
  color: var(--bo-purple);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bo-login-head h1,
.bo-login-head h1 span,
.bo-login-head h2,
.bo-login-head h2 span {
  margin: 0;
  color: var(--bo-text);
  font-size: clamp(26px, 4vw, 32px);
  line-height: 1.15;
  font-weight: 800;
}

.bo-login-card {
  width: 100%;
}

.bo-login-tabs-wrap,
.bo-login-panel.resp_login_wrap,
.bo-login-tabs-wrap.resp_login_wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

/* The Guest tab has fewer fields (no SNS row, no Guest-Order button), so the
   card — and with it the .bo-login-main gradient — used to shrink when Guest
   was selected. Reserve the taller Member panel's height on the Guest panel so
   the background keeps the same length across both tabs. */
#nonmember.bo-login-panel {
  min-height: 442px;
}

html.is-auth-page body.is-auth-page .bo-login-tabs.tab_basic,
html.is-auth-page body.is-auth-page .bo-login-tabs.tab_basic.fullsize,
html.is-auth-page body.is-auth-page .bo-login-main .tab_basic {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

html.is-auth-page body.is-auth-page .bo-login-tabs ul,
html.is-auth-page body.is-auth-page .bo-login-main .tab_basic > ul {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  margin: 0 0 22px;
  padding: 6px;
  list-style: none;
  border: 1px solid rgba(123, 63, 228, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  isolation: isolate;
}

/* Sliding pill — moves on .on and hover */
html.is-auth-page body.is-auth-page .bo-login-tabs ul::before,
html.is-auth-page body.is-auth-page .bo-login-main .tab_basic > ul::before {
  content: "";
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 6px;
  z-index: 0;
  width: calc((100% - 12px) / 2);
  border-radius: 999px;
  background: var(--bo-purple);
  box-shadow: 0 6px 18px rgba(123, 63, 228, 0.35);
  transform: translateX(0);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

/* Guest selected, or hovering Guest (while not hovering Member) */
html.is-auth-page body.is-auth-page .bo-login-tabs ul:has(> li:nth-child(2).on)::before,
html.is-auth-page body.is-auth-page .bo-login-tabs ul:has(> li:nth-child(2):hover)::before,
html.is-auth-page body.is-auth-page .bo-login-main .tab_basic > ul:has(> li:nth-child(2).on)::before,
html.is-auth-page body.is-auth-page .bo-login-main .tab_basic > ul:has(> li:nth-child(2):hover)::before {
  transform: translateX(100%);
}

/* Hovering Member always snaps pill left (preview) */
html.is-auth-page body.is-auth-page .bo-login-tabs ul:has(> li:first-child:hover)::before,
html.is-auth-page body.is-auth-page .bo-login-main .tab_basic > ul:has(> li:first-child:hover)::before {
  transform: translateX(0);
}

html.is-auth-page body.is-auth-page .bo-login-tabs li,
html.is-auth-page body.is-auth-page .bo-login-main .tab_basic > ul > li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  float: none;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: center;
  vertical-align: middle;
}

/* Style only the <a> — pill fill comes from ul::before */
html.is-auth-page body.is-auth-page .bo-login-tabs li a,
html.is-auth-page body.is-auth-page .bo-login-main .tab_basic > ul > li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  margin: 0;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: var(--bo-muted);
  background: transparent;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
  transition: color 0.22s ease;
}

html.is-auth-page body.is-auth-page .bo-login-tabs li a span,
html.is-auth-page body.is-auth-page .bo-login-main .tab_basic > ul > li > a span {
  display: inline;
  width: auto;
  height: auto;
  min-height: 0;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  line-height: inherit;
  box-shadow: none;
}

html.is-auth-page body.is-auth-page .bo-login-tabs li.on a,
html.is-auth-page body.is-auth-page .bo-login-tabs li:hover a,
html.is-auth-page body.is-auth-page .bo-login-main .tab_basic > ul > li.on > a,
html.is-auth-page body.is-auth-page .bo-login-main .tab_basic > ul > li:hover > a {
  color: #fff;
  background: transparent;
  box-shadow: none;
}

/* While preview-hovering the other tab, dim the selected label */
html.is-auth-page body.is-auth-page .bo-login-tabs ul:has(> li:hover) > li.on:not(:hover) > a,
html.is-auth-page body.is-auth-page .bo-login-main .tab_basic > ul:has(> li:hover) > li.on:not(:hover) > a {
  color: var(--bo-muted);
}

html.is-auth-page body.is-auth-page .bo-login-tabs li.on a span,
html.is-auth-page body.is-auth-page .bo-login-tabs li:hover a span,
html.is-auth-page body.is-auth-page .bo-login-main .tab_basic > ul > li.on > a span,
html.is-auth-page body.is-auth-page .bo-login-main .tab_basic > ul > li:hover > a span {
  color: inherit;
  background: transparent;
}

@media (prefers-reduced-motion: reduce) {
  html.is-auth-page body.is-auth-page .bo-login-tabs ul::before,
  html.is-auth-page body.is-auth-page .bo-login-main .tab_basic > ul::before {
    transition: none;
  }
}

.bo-login-panel {
  padding: 0;
}

.bo-login-fields,
.bo-login-fields.login_real_area {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bo-login-field {
  position: static;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

/* Kill Firstmall floating label (.ab_p / .input_area) behavior */
.bo-login-panel .input_area,
.bo-login-panel .ab_p {
  position: static;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
  float: none;
}

.bo-login-label,
.bo-login-label span,
.bo-login-field .ab_p,
.bo-login-field .ab_p span {
  position: static;
  display: block;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  color: #4e465c;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: none;
  pointer-events: auto;
}

html.is-auth-page body.is-auth-page .bo-login-main .bo-login-input,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel input[type="text"],
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel input[type="password"],
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel .box_id,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel .box_pw,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel .box_order,
html.is-auth-page body.is-auth-page .bo-login-main .resp_login_wrap .box_id,
html.is-auth-page body.is-auth-page .bo-login-main .resp_login_wrap .box_pw {
  position: static;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid #ded8e8;
  border-radius: 12px;
  color: #171320;
  background: #fff;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel .box_pw {
  margin-top: 0;
}

html.is-auth-page body.is-auth-page .bo-login-main .bo-login-input::placeholder,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel input::placeholder {
  color: #b0a8bd;
  font-weight: 400;
}

html.is-auth-page body.is-auth-page .bo-login-main .bo-login-input:hover,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel input[type="text"]:hover,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel input[type="password"]:hover,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel input[type="email"]:hover {
  border-color: #c9bedd;
}

/* Beat user.css .resp_login_wrap .box_id:focus { border-color:#1D1D1D } */
html.is-auth-page body.is-auth-page .bo-login-main .resp_login_wrap .box_id[type="text"]:focus,
html.is-auth-page body.is-auth-page .bo-login-main .resp_login_wrap .box_pw[type="password"]:focus,
html.is-auth-page body.is-auth-page .bo-login-main .resp_login_wrap .box_order[type="text"]:focus,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-input:focus,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-field input:focus,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel input[type="text"]:focus,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel input[type="password"]:focus,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel input[type="email"]:focus {
  outline: 0;
  border-color: var(--bo-purple);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(123, 63, 228, 0.14);
}

/*
  Chrome autofill paints #E8F0FE with its own !important.
  Inset white shadow is the only reliable override — keep !important here only.
*/
html.is-auth-page body.is-auth-page .bo-login-main input.bo-login-input:-webkit-autofill,
html.is-auth-page body.is-auth-page .bo-login-main input.bo-login-input:-webkit-autofill:hover,
html.is-auth-page body.is-auth-page .bo-login-main input.bo-login-input:-webkit-autofill:focus,
html.is-auth-page body.is-auth-page .bo-login-main input.bo-login-input:-webkit-autofill:active,
html.is-auth-page body.is-auth-page .bo-login-main .resp_login_wrap input.box_id:-webkit-autofill,
html.is-auth-page body.is-auth-page .bo-login-main .resp_login_wrap input.box_id:-webkit-autofill:hover,
html.is-auth-page body.is-auth-page .bo-login-main .resp_login_wrap input.box_id:-webkit-autofill:focus,
html.is-auth-page body.is-auth-page .bo-login-main .resp_login_wrap input.box_id:-webkit-autofill:active,
html.is-auth-page body.is-auth-page .bo-login-main .resp_login_wrap input.box_pw:-webkit-autofill,
html.is-auth-page body.is-auth-page .bo-login-main .resp_login_wrap input.box_pw:-webkit-autofill:hover,
html.is-auth-page body.is-auth-page .bo-login-main .resp_login_wrap input.box_pw:-webkit-autofill:focus,
html.is-auth-page body.is-auth-page .bo-login-main .resp_login_wrap input.box_pw:-webkit-autofill:active,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel input:-webkit-autofill,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel input:-webkit-autofill:hover,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel input:-webkit-autofill:focus,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel input:-webkit-autofill:active,
html.is-auth-page body.is-auth-page .bo-login-main--register .resp_join_table input:-webkit-autofill,
html.is-auth-page body.is-auth-page .bo-login-main--register .resp_join_table input:-webkit-autofill:hover,
html.is-auth-page body.is-auth-page .bo-login-main--register .resp_join_table input:-webkit-autofill:focus {
  -webkit-text-fill-color: #171320 !important;
  caret-color: #171320 !important;
  background-color: #fff !important;
  background-image: none !important;
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
  transition: background-color 600000s ease-in-out 0s, color 600000s ease-in-out 0s;
}

.bo-login-remember {
  margin: 2px 0 4px;
  padding: 0;
}

.bo-login-remember .id_save {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: auto;
  padding: 0;
  color: var(--bo-muted);
  font-size: 13px;
  line-height: 1.3;
  cursor: pointer;
}

.bo-login-remember input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--bo-purple);
}

.bo-login-actions {
  margin: 4px 0 0;
  padding: 0;
}

html.is-auth-page body.is-auth-page .bo-login-main .bo-login-submit,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel .btn_resp.size_login1,
html.is-auth-page body.is-auth-page .bo-login-main .resp_login_wrap .btn_resp.size_login1,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel button.bo-login-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  min-height: 50px;
  max-height: 50px;
  margin: 0;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--bo-purple);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(123, 63, 228, 0.28);
  transition: background-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

html.is-auth-page body.is-auth-page .bo-login-main .bo-login-submit:hover,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel .btn_resp.size_login1:hover,
html.is-auth-page body.is-auth-page .bo-login-main .resp_login_wrap .btn_resp.size_login1:hover {
  background: var(--bo-purple-deep);
  box-shadow: 0 10px 26px rgba(106, 52, 201, 0.36);
}

html.is-auth-page body.is-auth-page .bo-login-main .bo-login-submit:active {
  transform: translateY(1px);
}

.bo-login-links {
  margin: 4px 0 0;
  padding: 0;
  color: var(--bo-muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

html.is-auth-page body.is-auth-page .bo-login-main .resp_login_wrap .login_real_area .find_join > a,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-links a,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel .find_join > a {
  display: inline;
  padding: 0;
  color: #4e465c;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
  text-decoration: none;
}

html.is-auth-page body.is-auth-page .bo-login-main .resp_login_wrap .login_real_area .find_join > a:hover,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-links a:hover,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-panel .find_join > a:hover {
  color: var(--bo-purple);
  text-decoration: underline;
}

.bo-login-links-sep {
  margin: 0 6px;
  color: #cfc6dd;
}

.bo-login-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin: 22px 0 14px;
  color: var(--bo-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.bo-login-divider::before,
.bo-login-divider::after {
  content: "";
  height: 1px;
  background: rgba(123, 63, 228, 0.16);
}

.bo-login-sns,
.bo-login-main .login_sns_icon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0;
  line-height: 0;
}

/* Icon PNGs are already circular — don't wrap in a second clipped circle */
.bo-login-sns li,
.bo-login-main .login_sns_icon > li {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  overflow: visible;
  line-height: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.bo-login-sns li:hover,
.bo-login-main .login_sns_icon > li:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 0 10px rgba(155, 107, 255, 0.35));
}

.bo-login-sns img,
.bo-login-main .login_sns_icon img {
  display: block;
  width: 44px;
  height: 44px;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  object-fit: contain;
  object-position: center center;
}

.bo-login-guest-order {
  margin-top: 18px;
  padding-top: 0;
}

html.is-auth-page body.is-auth-page .bo-login-main .bo-login-guest-order .btn_resp,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-guest-order button {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  min-height: 48px;
  max-height: 48px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid var(--bo-purple);
  border-radius: 12px;
  color: var(--bo-purple);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

html.is-auth-page body.is-auth-page .bo-login-main .bo-login-guest-order .btn_resp:hover,
html.is-auth-page body.is-auth-page .bo-login-main .bo-login-guest-order button:hover {
  color: #fff;
  background: var(--bo-purple);
}

.bo-login-guest-note {
  margin: 0;
  color: var(--bo-muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.bo-login-guest-note p {
  margin: 0;
}

/* Hide — early paint via html; beat Firstmall via html+body */
html.is-auth-page .bo-login-main .label_group.v2.hide,
html.is-auth-page .bo-login-main .hide,
html.is-auth-page .bo-login-panel .hide,
html.is-auth-page body.is-auth-page .bo-login-main .label_group.v2.hide,
html.is-auth-page body.is-auth-page .bo-login-main .hide,
html.is-auth-page body.is-auth-page .bo-login-panel .hide {
  display: none;
}

/* ——— Find ID / Reset / Register ——— */
.bo-login-main--register .bo-login-shell {
  width: min(100%, 520px);
}

.bo-login-main .resp_login_wrap,
.bo-login-main .resp_member_join_wrap {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

/* Firstmall user.css: .loginTabContetns { padding: 40px } — drop top gap under tabs */
.bo-login-main .loginTabContetns,
.bo-login-main #findidfromlay,
.bo-login-main #findpwfromlay,
.bo-login-main #findidresultlay,
.bo-login-main #findpwresultlay {
  max-width: none;
  margin: 0;
  padding: 0;
}

.bo-login-main .bo-login-guest-note.custom_sub2,
.bo-login-main .custom_sub2.bo-login-guest-note {
  margin: 0 0 16px;
  padding: 0;
  color: var(--bo-muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.bo-auth-sns-note,
.bo-login-main .custom_sub3 {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  color: var(--bo-muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.bo-auth-sns-note p,
.bo-login-main .custom_sub3 p {
  margin: 0;
}

.bo-auth-phone-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 6px;
}

.bo-auth-phone-row span {
  color: var(--bo-muted);
  font-size: 13px;
}

.bo-login-main input[type="email"].bo-login-input,
.bo-login-main input[type="tel"],
.bo-login-main .size_phone {
  box-sizing: border-box;
  height: 48px;
  min-height: 48px;
  margin: 0;
  padding: 0 12px;
  border: 1px solid #ded8e8;
  border-radius: 12px;
  color: #171320;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  box-shadow: none;
}

.bo-login-main .size_phone {
  width: 100%;
}

.bo-login-main .btn_area_c {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
}

html.is-auth-page body.is-auth-page .bo-login-main .btn_area_c .btn_resp.size_login1,
html.is-auth-page body.is-auth-page .bo-login-main .btn_area_c .btn_resp.size_login2,
html.is-auth-page body.is-auth-page .bo-login-main .find_id_result .btn_resp.size_login1,
html.is-auth-page body.is-auth-page .bo-login-main .find_id_result .btn_resp.size_login2 {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  min-height: 50px;
  margin: 0;
  padding: 0 16px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

html.is-auth-page body.is-auth-page .bo-login-main .btn_area_c .btn_resp.size_login1,
html.is-auth-page body.is-auth-page .bo-login-main .find_id_result .btn_resp.size_login1 {
  color: #fff;
  background: var(--bo-purple);
  box-shadow: 0 8px 22px rgba(123, 63, 228, 0.28);
}

html.is-auth-page body.is-auth-page .bo-login-main .btn_area_c .btn_resp.size_login2,
html.is-auth-page body.is-auth-page .bo-login-main .find_id_result .btn_resp.size_login2 {
  color: var(--bo-purple);
  background: #fff;
  border: 1px solid var(--bo-purple);
  box-shadow: none;
}

.bo-login-main .find_id_result,
.bo-login-main .auth_result {
  margin: 0;
  color: var(--bo-text);
  font-size: 14px;
  line-height: 1.55;
  text-align: center;
}

.bo-login-main .find_id_result p {
  margin: 0 0 8px;
}

.bo-login-main .trendy-01,
.bo-login-main .auth_result .pointcolor,
.bo-login-main .auth_result .blue {
  color: var(--bo-purple);
  font-weight: 700;
}

.bo-login-main .find_confirm {
  display: grid;
  gap: 10px;
  margin: 0 0 16px;
  padding: 14px;
  list-style: none;
  border: 1px solid var(--bo-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.bo-login-main .find_confirm .img {
  display: none;
}

.bo-login-main .label_group.v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 0 0 14px;
  justify-content: center;
  color: var(--bo-muted);
  font-size: 13px;
}

/* Register form — beat Firstmall user.css floating labels + broken mail/phone rows */
.bo-login-main--register .resp_member_join_wrap,
.bo-login-main--register .resp_member_join,
.bo-login-main--register #formMemberArea {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.bo-login-main--register .resp_join_table {
  display: grid;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-bottom: 0;
  background: transparent;
  table-layout: auto;
  font-size: 14px;
}

.bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table > ul,
.bo-login-main--register .resp_join_table > ul {
  position: static;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 0;
  background: transparent;
  list-style: none;
}

.bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table > ul > li,
.bo-login-main--register .resp_join_table > ul > li {
  position: static;
  display: block;
  float: none;
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  z-index: auto;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-top: 0;
  border-left: 0;
  background: transparent;
  color: var(--bo-text);
  vertical-align: top;
  text-align: left;
}

/* Kill user.css floating label (absolute th over input) */
html.is-auth-page body.is-auth-page .bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table > ul > li.th,
html.is-auth-page body.is-auth-page .bo-login-main--register .resp_join_table > ul > li.th {
  position: static;
  left: auto;
  top: auto;
  z-index: auto;
  width: auto;
  padding: 0;
  background: none;
  color: #4e465c;
}

.bo-login-main--register .resp_join_table > ul > li.th.dn,
.bo-login-main--register .resp_join_table .th.dn,
.bo-login-main--register .resp_join_table .th.other_evt_dn {
  display: none;
}

html.is-auth-page body.is-auth-page .bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table > ul > li.th > p,
html.is-auth-page body.is-auth-page .bo-login-main--register .resp_join_table > ul > li.th > p {
  display: block;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  color: #4e465c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  background: none;
  user-select: auto;
}

.bo-login-main--register .resp_join_table > ul.required > li.th > p {
  background: none;
}

.bo-login-main--register .resp_join_table > h4,
.bo-login-main--register .resp_member_join .resp_join_table > h4 {
  margin: 4px 0 0;
  padding: 0;
  color: var(--bo-text);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
}

.bo-login-main--register .resp_join_table > h4.Pt16 {
  margin-top: 10px;
}

.bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table input[type="text"],
.bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table input[type="password"],
.bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table input[type="email"],
.bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table input[type="tel"],
.bo-login-main--register .resp_join_table input[type="text"],
.bo-login-main--register .resp_join_table input[type="password"],
.bo-login-main--register .resp_join_table input[type="email"],
.bo-login-main--register .resp_join_table input[type="tel"],
.bo-login-main--register .resp_join_table select {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  height: 48px;
  min-height: 48px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid #ded8e8;
  border-radius: 12px;
  color: #171320;
  background: #fff;
  background-color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  box-shadow: none;
}

.bo-login-main--register .resp_join_table input:focus,
.bo-login-main--register .resp_join_table select:focus {
  outline: 0;
  border-color: var(--bo-purple);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(123, 63, 228, 0.14);
}

/* Email: local @ domain on one row */
.bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table li.row_email,
.bo-login-main--register .resp_join_table li.row_email {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  position: static;
}

.bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table li.row_email input,
.bo-login-main--register .resp_join_table li.row_email input,
.bo-login-main--register .resp_join_table li.row_email .size_mail1,
.bo-login-main--register .resp_join_table li.row_email .size_mail2 {
  flex: 1 1 0;
  width: 0;
  min-width: 0;
  max-width: none;
}

/* Phone: three segments + hyphens on one row */
.bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table li.row_phone,
.bo-login-main--register .resp_join_table li.row_phone {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  position: static;
}

.bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table li.row_phone input,
.bo-login-main--register .resp_join_table li.row_phone input,
.bo-login-main--register .resp_join_table li.row_phone .size_phone {
  flex: 1 1 0;
  width: 0;
  min-width: 0;
  max-width: none;
}

.bo-login-main--register .resp_join_table li.row_email,
.bo-login-main--register .resp_join_table li.row_phone {
  color: var(--bo-muted);
  font-size: 13px;
}

.bo-login-main--register .resp_join_table .guide_text,
.bo-login-main--register .resp_join_table .desc,
.bo-login-main--register .resp_join_table .td > p {
  margin: 6px 0 0;
  color: var(--bo-muted);
  font-size: 12px;
  line-height: 1.45;
}

/* "How did you get to our site?" — specificity over user.css, no */
body.is-auth-page .bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table > ul.form_sub {
  gap: 8px;
}

body.is-auth-page .bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table li.custom_form.other_evt0 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 12px;
  width: 100%;
}

body.is-auth-page .bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table li.custom_form > label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: auto;
  margin: 0;
  padding: 6px 0;
  border: 0;
  color: var(--bo-text);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  cursor: pointer;
  touch-action: manipulation;
  transition: color 0.2s ease;
}

body.is-auth-page .bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table li.custom_form > label:hover {
  color: var(--bo-purple);
}

body.is-auth-page .bo-login-main--register .resp_member_join_wrap .resp_member_join li.other_evt1 {
  position: static;
  right: auto;
  top: auto;
  padding: 0;
}

body.is-auth-page .bo-login-main--register .resp_member_join_wrap .resp_member_join li.other_evt1 > input[type="text"] {
  width: 100%;
  margin-top: 4px;
}

body.is-auth-page .bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table li.custom_form input[type="checkbox"],
body.is-auth-page .bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table li.custom_form input[type="checkbox"]:checked,
body.is-auth-page .bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table li.custom_form input:checked[type="checkbox"] {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  position: static;
  display: inline-block;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  border: initial;
  background: initial;
  background-color: initial;
  box-shadow: none;
  accent-color: var(--bo-purple);
  transition: none;
  cursor: pointer;
}

body.is-auth-page .bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table li.custom_form input[type="checkbox"]::before,
body.is-auth-page .bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table li.custom_form input[type="checkbox"]::after,
body.is-auth-page .bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table li.custom_form input[type="checkbox"]:checked::after {
  content: none;
  display: none;
  border: 0;
}

.bo-login-main--register .resp_join_table .btn_resp {
  border-radius: 999px;
}

.bo-register-legal,
.bo-login-main .register_info {
  margin: 18px 0 0;
  color: var(--bo-muted);
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
}

.bo-register-legal a,
.bo-login-main .register_info a {
  color: #4e465c;
  font-weight: 700;
  text-decoration: underline;
}

.bo-register-legal a:hover,
.bo-login-main .register_info a:hover {
  color: var(--bo-purple);
}

.bo-login-main h4.login_sns_info {
  display: none;
}

/* ——— Responsive ——— */
@media (min-width: 761px) {
  .bo-login-main {
    padding: 64px 24px 100px;
  }

  .bo-login-shell {
    width: min(100%, 420px);
    padding: 36px 32px 38px;
    border-radius: 28px;
    box-shadow:
      0 0 0 1px rgba(214, 196, 255, 0.22),
      0 0 32px rgba(155, 107, 255, 0.4),
      0 0 72px rgba(123, 63, 228, 0.32),
      0 0 140px rgba(123, 63, 228, 0.18);
  }

  .bo-login-main--register .bo-login-shell {
    width: min(100%, 540px);
  }
}

@media (max-width: 760px) {
  .bo-login-main {
    padding: 28px 14px 64px;
  }

  .bo-login-shell {
    width: min(100%, 380px);
    padding: 26px 18px 28px;
    border-radius: 18px;
  }

  html.is-auth-page body.is-auth-page .bo-login-tabs li a,
  html.is-auth-page body.is-auth-page .bo-login-main .tab_basic > ul > li > a {
    height: 38px;
    min-height: 38px;
    max-height: 38px;
    font-size: 13px;
  }

  .bo-login-main--register .bo-login-shell {
    width: min(100%, 400px);
  }
}

@media (max-width: 420px) {
  body.is-auth-page .bo-login-main--register .resp_member_join_wrap .resp_member_join .resp_join_table li.custom_form.other_evt0 {
    grid-template-columns: 1fr;
  }
}

/* ===== Sign-in page chrome =============================================
   Scoped to body.is-login-page so only the sign-in screen is affected, not
   register or find. The header's logo bar and category nav are dropped on a
   phone so the whole .bo-login-shell fits in one screen without scrolling —
   together they took 156px, more than the shell overran the viewport by. The
   floating quick buttons go on phone and tablet both, per request. */
@media (max-width: 760px) {
  body.is-login-page .layout_header .logo_wrap,
  body.is-login-page .layout_header #cateSwiper.nav_wrap {
    display: none;
  }
}

@media (max-width: 1120px) {
  body.is-login-page #floating_over .ico_floating_top,
  body.is-login-page #floating_over .ico_floating_talk {
    display: none;
  }
}
