.everythings-social-login {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 12px;
}

.social-login-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: #777;
  margin: 12px 0;
}

.social-login-divider::before,
.social-login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e5e5;
}

/* 버튼 공통 */
.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  border-radius: 4px;
  font-size: 0.875rem; /* 14px */
  font-weight: 600;
  text-decoration: none;
  box-sizing: border-box;
  transition: transform 0.06s ease, box-shadow 0.12s ease, filter 0.12s ease;
}

/* 아이콘 */
.social-btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 네이버 */
.social-btn--naver .social-btn__icon {
  width: 16px;
  height: 16px;
}

/* 카카오 */
.social-btn--kakao .social-btn__icon {
  width: 20px;
  height: 20px;
}

/* 구글 */
.social-btn--google .social-btn__icon {
  width: 18px;
  height: 18px;
}
.social-btn__label {
  line-height: 1;
}

/* 네이버 */
.social-btn--naver {
  /* background: #03a94d; */
  background: #03c75a;
  color: #fff;
}

/* 카카오 */
.social-btn--kakao {
  background: #fee500;
  color: #000;
}

/* 구글 */
.social-btn--google {
  background: #fff;
  color: #000;
  border: 1px solid #ddd;
}
