.ss-members {
  --ss-ink: #29252d;
  --ss-muted: #77717c;
  --ss-line: #e9e5ec;
  --ss-brand: #ef5b83;
  --ss-brand-dark: #d9436c;
  display: flex;
  justify-content: center;
  padding: 48px 18px 72px;
  color: var(--ss-ink);
  font-family: Pretendard, "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.ss-member-card {
  width: 100%;
  max-width: 440px;
  padding: 36px 34px;
  border: 1px solid var(--ss-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(49, 31, 43, .08);
}

.ss-login-card {
  max-width: 430px;
  padding-top: 42px;
  border-color: transparent;
  box-shadow: none;
}

.ss-login-card .ss-wordmark {
  margin-bottom: 18px;
  font-size: 22px;
}

.ss-login-guide {
  margin: 0 0 29px;
  color: #777;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
  text-align: center;
}

.ss-login-guide strong {
  color: #f04452;
  font-weight: 800;
}

.ss-login-form {
  width: 100%;
  max-width: 310px;
  margin: 0 auto;
}

.ss-login-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 64px;
  gap: 7px;
  align-items: stretch;
}

.ss-login-inputs {
  display: grid;
  gap: 5px;
}

.ss-inline-field {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
}

.ss-inline-field > span {
  position: relative;
  padding-left: 10px;
  color: #666;
  font-size: 12px;
  font-weight: 700;
}

.ss-inline-field > span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: 6px;
  background: #d7d7d7;
  content: "";
  transform: translateY(-50%);
}

.ss-inline-field input {
  box-sizing: border-box;
  width: 100%;
  height: 30px;
  padding: 3px 7px;
  border: 1px solid #aaa;
  border-radius: 2px;
  color: #333;
  font-size: 13px;
  outline: none;
}

.ss-inline-field input:focus {
  border-color: #555;
  box-shadow: 0 0 0 2px rgba(239, 91, 131, .1);
}

.ss-login-submit {
  border: 0;
  border-radius: 3px;
  background: linear-gradient(#c9c9c9, #aaa);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.ss-login-submit:hover {
  background: linear-gradient(#b9b9b9, #959595);
}

.ss-login-options {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 17px 0 0 68px;
  color: #6e6e6e;
  font-size: 11px;
  white-space: nowrap;
}

.ss-login-options label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.ss-login-options input {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: #ef4b57;
}

.ss-compact-kakao {
  display: flex;
  justify-content: center;
  margin-top: 31px;
}

.ss-compact-kakao .ss-kakao,
.ss-compact-kakao .ss-kakao-disabled {
  width: auto;
  min-width: 134px;
  min-height: 36px;
  margin: 0;
  padding: 0 15px 0 10px;
  border: 1px solid #cfc3c3;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.ss-compact-kakao .ss-kakao-mark {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 4px;
  background: #fee500;
  color: #3b2929;
  font-size: 10px;
}

.ss-login-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
}

.ss-login-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 18px;
  border-radius: 18px;
  color: #fff !important;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, .08);
}

.ss-action-join { min-width: 88px; background: #f0444d; }
.ss-action-reset { min-width: 134px; background: #8c8c8c; }
.ss-action-join:hover { background: #dc323b; }
.ss-action-reset:hover { background: #767676; }

.ss-wordmark {
  display: block;
  margin-bottom: 26px;
  color: var(--ss-brand);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.04em;
  text-align: center;
  text-decoration: none;
}

.ss-member-card h1 {
  margin: 0 0 10px;
  font-size: 27px;
  line-height: 1.35;
  letter-spacing: -.04em;
  text-align: center;
}

.ss-subtitle {
  margin: 0 0 27px;
  color: var(--ss-muted);
  font-size: 14px;
  text-align: center;
}

.ss-form { display: grid; gap: 17px; }
.ss-field { display: grid; gap: 8px; }
.ss-field > span { font-size: 14px; font-weight: 700; }
.ss-field small { color: var(--ss-muted); font-size: 12px; }
.ss-field input {
  box-sizing: border-box;
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border: 1px solid #d8d2dc;
  border-radius: 10px;
  background: #fff;
  color: var(--ss-ink);
  font-size: 16px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

.ss-field input:focus {
  border-color: var(--ss-brand);
  box-shadow: 0 0 0 3px rgba(239, 91, 131, .13);
}

.ss-primary,
.ss-secondary,
.ss-kakao,
.ss-kakao-disabled {
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.3;
  text-decoration: none;
  cursor: pointer;
}

.ss-primary { background: var(--ss-brand); color: #fff !important; }
.ss-primary:hover { background: var(--ss-brand-dark); }
.ss-secondary { border: 1px solid var(--ss-line); background: #fff; color: var(--ss-ink) !important; }
.ss-kakao { gap: 10px; margin-bottom: 22px; background: #fee500; color: #191919 !important; }
.ss-kakao:hover { background: #f4dc00; }
.ss-kakao-mark { font-size: 12px; }
.ss-kakao-disabled { margin-bottom: 22px; background: #f3f1f4; color: #999; cursor: default; }

.ss-divider {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 2px 0 22px;
  color: #98929b;
  font-size: 12px;
}
.ss-divider::before,
.ss-divider::after { height: 1px; flex: 1; background: var(--ss-line); content: ""; }

.ss-check { display: flex; align-items: flex-start; gap: 7px; color: #625c66; font-size: 13px; line-height: 1.55; }
.ss-check input { margin-top: 3px; accent-color: var(--ss-brand); }
.ss-check a { color: #514b55; text-decoration: underline; }
.ss-agreement { padding: 2px 0; }

.ss-links { display: flex; justify-content: space-between; margin-top: 23px; font-size: 13px; }
.ss-links-center { justify-content: center; }
.ss-links a { color: #6f6873; text-decoration: none; }
.ss-links a:hover { color: var(--ss-brand); }

.ss-error,
.ss-notice {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 9px;
  font-size: 13px;
  line-height: 1.5;
}
.ss-error { background: #fff0f3; color: #ad294e; }
.ss-notice { background: #eef9f3; color: #26724a; }
.ss-kakao-connected { margin-bottom: 20px; padding: 13px; border-radius: 9px; background: #fffbe0; font-size: 14px; text-align: center; }
.ss-kakao-connected span { margin-right: 4px; color: #8b7600; font-weight: 800; }

.ss-profile { display: grid; justify-items: center; gap: 7px; margin: 27px 0 30px; }
.ss-profile span { color: var(--ss-muted); font-size: 13px; }
.ss-avatar { display: grid; width: 62px; height: 62px; margin-bottom: 5px; place-items: center; border-radius: 50%; background: #fff0f4; color: var(--ss-brand); font-size: 24px; font-weight: 800; }
.ss-hp { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

@media (max-width: 520px) {
  .ss-members { padding: 22px 12px 48px; }
  .ss-member-card { padding: 29px 21px; border-radius: 17px; box-shadow: none; }
  .ss-member-card h1 { font-size: 24px; }
  .ss-login-card { padding-top: 22px; }
  .ss-login-box { grid-template-columns: minmax(0, 1fr) 62px; }
  .ss-inline-field { grid-template-columns: 64px minmax(0, 1fr); }
  .ss-login-options { margin-left: 64px; gap: 9px; font-size: 10px; }
  .ss-login-actions a { padding: 0 13px; }
}
