/* BASIC css start */
.sns-login ul li {
  padding: 0 !important; 
  display: block;
}

.sns-title {
  font-size: 4.8vw;
  display: flex;
  align-items: flex-end;
  font-weight: 500;
}

.sns-title p {
  font-size: 3vw;
  color: #666;
  margin-left: 1vw;
}

.sns-login li.naver a {
  width: 100%;
  height: 12vw;
  background-color: #03c75a;
}

.sns-login li.kakao a {
  width: 100%;
  height: 12vw;
  background-color: #fee500;
}

.sns-login li a {
  display: flex;               /* ✅ 핵심 */
  justify-content: center;     /* 가로 중앙 */
  align-items: center;         /* 세로 중앙 */
  text-align: center;
}

.sns-login ul li img {
  width: 43%;
  margin: 4.1%/* 이미지 크기 조절 */
}

/* BASIC css end */

