body {
  min-height: 100vh;
  background: #edf1ef;
}

.signup-page {
  display: flex;
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 22px 22px 28px;
  flex-direction: column;
  background: #fbfcfb;
}

.signup-back {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-left: -8px;
  color: #26352e;
  font-size: 31px;
  font-weight: 300;
}

.signup-intro {
  margin-top: 34px;
}

.auth-brand {
  display: inline-flex;
  align-items: center;
}

.auth-brand img {
  display: block;
  width: 184px; 
  height: auto;
  
  /* 핵심: SVG 내부 공백을 뚫고 1.35배 강제 확대 */
  transform: scale(1.35); 
  transform-origin: left center; /* 왼쪽을 기준으로 확대 */
  margin-left: -34px;
}

.signup-intro h1 {
  margin: 14px 0 13px;
  color: #17251f;
  font-size: 28px;
  line-height: 1.32;
  letter-spacing: -.055em;
}

.signup-intro p {
  margin: 0;
  color: #849089;
  font-size: 13px;
  line-height: 1.65;
}

.signup-benefits {
  display: grid;
  gap: 11px;
  margin-top: 30px;
  padding: 17px;
  border: 1px solid #e4e9e6;
  border-radius: 18px;
  background: #fff;
}

.signup-benefits > div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.signup-benefits b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  background: #edf6f1;
  color: var(--brand);
  font-size: 10px;
}

.signup-benefits span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.signup-benefits strong {
  color: #344039;
  font-size: 12px;
}

.signup-benefits small {
  color: #919a95;
  font-size: 10px;
}

.signup-actions {
  margin-top: auto;
  padding-top: 30px;
}

.signup-consents {
  display: grid;
  gap: 0;
  margin: 0 0 16px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #dfe6e2;
  border-radius: 15px;
  background: #fff;
}

.signup-consents legend {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.signup-consents label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  cursor: pointer;
}

.signup-consents input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--brand);
}

.consent-all {
  min-height: 48px;
  padding: 0 14px;
  background: #f3f7f5;
  color: #26352e;
  font-size: 12px;
  font-weight: 800;
}

.consent-row {
  display: flex;
  align-items: center;
  min-height: 43px;
  padding: 0 14px;
  justify-content: space-between;
  border-top: 1px solid #edf0ee;
}

.consent-row label {
  color: #626e67;
  font-size: 10px;
}

.consent-row b {
  margin-right: 4px;
  color: #36705a;
  font-size: 9px;
}

.consent-row > a {
  padding: 8px 0 8px 12px;
  color: #7f8a84;
  font-size: 9px;
  font-weight: 700;
  text-decoration: none;
}

.signup-kakao {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 750;
}

.signup-kakao {
  width: min(100%, 360px);
  margin-inline: auto;
  min-height: 0;
  aspect-ratio: 600 / 90;
  border-radius: 0;
  background: transparent url("../assets/brand/kakao-start.png") center / contain no-repeat;
  color: transparent;
  font-size: 0;
}

.signup-kakao svg {
  width: 20px;
  height: 20px;
}

.signup-kakao svg {
  display: none;
}

.signup-kakao:disabled {
  cursor: wait;
  opacity: .58;
}

.signup-terms,
.login-link {
  color: #969f9a;
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.signup-terms {
  margin: 14px 12px 0;
}

.login-link {
  margin: 15px 0 0;
  font-size: 11px;
}

.signup-terms a,
.login-link a {
  color: #286f52;
  font-weight: 750;
  text-decoration: none;
}

.signup-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  padding: 11px 15px;
  transform: translate(-50%, 12px);
  border-radius: 12px;
  background: #1e2a24;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: .18s ease;
}

.signup-toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}
