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

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

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

.login-intro {
  margin-top: 64px;
}

.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;
}


.login-intro h1 {
  margin: 15px 0 14px;
  color: #17251f;
  font-size: 30px;
  line-height: 1.3;
  letter-spacing: -.055em;
}

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

.login-actions {
  margin-top: auto;
}

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

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

.kakao-login svg {
  display: none;
}

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

.signup-link {
  margin: 18px 0 0;
  color: #7f8984;
  font-size: 11px;
  text-align: center;
}

.signup-link a {
  margin-left: 4px;
  color: #246d50;
  font-weight: 800;
  text-decoration: none;
}

.login-footer {
  display: flex;
  justify-content: center;
  gap: 17px;
  margin-top: 34px;
}

.login-footer a {
  color: #98a19c;
  font-size: 10px;
  text-decoration: none;
}

.login-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;
}

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