.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  height: 48px;
  /* padding: var(--spacing-16) var(--spacing-12); */

  border: none;
  background: none;
  border: 1px solid var(--green-500);
  background-color: var(--green-400);
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
  /* 기본 스타일 제거 */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: var(--spacing-12);
}

/* 로그인 인풋 */
.login-form-wrap {
  width: 100%;
  min-width: 335px;
  max-width: 535px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 0 40px 0;
}
.login-box {
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 14px;
}
.home-login-id,
.home-login-pw {
}
.login-text {
  color: var(--white);
  font-size: var(--font-16);
  font-weight: 400;
}
button {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* sns로그인 */
.sns-divider {
  width: 100%;
  max-width: 535px;
  display: flex;

  gap: 24px; /* 글자와 선 사이 간격 */
  align-items: center;
  padding: 0 0 20px 0;
}

.sns-divider::before,
.sns-divider::after {
  content: "";
  height: 1px;
  flex: 1; /* 양쪽 선이 남는 공간만큼 늘어남 */
  background-color: #bdbdbd;
}

.sns-divider-text {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: var(--gray-400);
  white-space: nowrap; /* 글자가 줄바꿈 안 되게 */
}

.sns-login-wrap {
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 16px;
}
.sns-login-wrap a {
  width: 100%;
  min-width: 335px;
  max-width: 535px;
}

/* 카카오 색상 */
.kakao {
  position: relative;
  width: 100%;
  min-width: 335px;
  max-width: 535px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-16) var(--spacing-12);
  border: 1px solid #ecd320;
  background-color: #ffe402;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: var(--gray-800);
  border-radius: 12px;
}
.kakao img {
  position: absolute;
  bottom: 0px;
  left: 8px;
  width: 48px;
  height: 48px;
}
.naver {
  position: relative;
  width: 100%;
  min-width: 335px;
  max-width: 535px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-16) var(--spacing-12);
  border: 1px solid #00af16;
  background-color: #00bf18;
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  border-radius: 12px;
}
.naver img {
  position: absolute;
  bottom: 0px;
  left: 8px;
  width: 48px;
  height: 48px;
}
.google {
  position: relative;
  width: 100%;

  min-width: 335px;
  max-width: 535px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-16) var(--spacing-12);
  border: 1px solid #dcdcdc;
  background-color: #f5f5f5;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: var(--gray-800);
  text-align: center;
  border-radius: 12px;
}
.google img {
  position: absolute;
  bottom: 0px;
  left: 8px;
  width: 48px;
  height: 48px;
}

.move-signup {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
}

.sns-divider-text {
}
.signup-text {
  color: var(--green-400);
}
.signup-text:hover {
  font-weight: 600;
  color: var(--green-500);
}

@media screen and (min-width: 1024px) {
  .wrap-column {
    width: 100%;
  }
  .login-page-wrap {
    width: 100%;
    max-width: 1000px; /* PC에서 너무 퍼지지 않게 조절 */
    display: flex;
    gap: 100px; /* 로고와 폼 사이의 간격 */
    align-items: center;
    justify-content: center;
    flex-direction: row; /* 세로 나열에서 가로 나열로 변경 */
    margin: 0 auto;
  }

  /* 로고 영역 조절 */
  .logo-wrap {
    display: flex;
    justify-content: center;
    flex: 0.5;
    padding: 0; /* 모바일의 80px 패딩 제거 */
  }

  .logo-column {
    width: 300px; /* PC에서는 로고를 조금 더 키워도 좋습니다 */
  }

  .bounce {
    animation: bounce 0.7s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  }
  @keyframes bounce {
    0% {
      transform: translateY(0) scaleY(1) scaleX(1);
    }
    15% {
      transform: translateY(-80px) scaleY(1.1) scaleX(0.92);
    }
    30% {
      transform: translateY(-120px) scaleY(1.15) scaleX(0.88);
    }
    50% {
      transform: translateY(-80px) scaleY(1.1) scaleX(0.92);
    }
    65% {
      transform: translateY(-10px) scaleY(0.92) scaleX(1.08);
    }
    75% {
      transform: translateY(0) scaleY(1.06) scaleX(0.96);
    }
    85% {
      transform: translateY(-16px) scaleY(1.02) scaleX(0.99);
    }
    100% {
      transform: translateY(0) scaleY(1) scaleX(1);
    }
  }

  /* 우측 콘텐츠 영역 조절 */
  .login-content-side {
    width: 100%;
    max-width: 400px; /* 폼의 최대 너비 고정 */
    display: flex;
    align-items: flex-start; /* 왼쪽 정렬 */
    flex: 1;
    flex-direction: column;
  }

  /* 기존 가로 너비 제한 클래스들 수정 */
  .login-form-wrap,
  .sns-divider,
  .sns-login-wrap,
  .sns-login-wrap a {
    width: 100%;
    max-width: 100%; /* 부모인 .login-content-side에 맞춤 */
  }

  /* 회원가입 문구 정렬 */
  .move-signup {
    width: 100%;
    margin-top: 20px;
    text-align: center;
  }

  .login-box {
    transition: all 0.55s cubic-bezier(0.77, 0, 0.18, 1);
  }

  .login-shell.is-desktop {
    gap: 60px;
    flex-direction: row;
    padding: 40px;
  }
  .login-shell.is-desktop .logo-block svg {
    width: 160px;
    height: 160px;
  }
}
