/* Social login buttons — login & register */

.auth-card-wide {
  max-width: 460px;
}

.oauth-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.btn-oauth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 16px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid transparent;
  transition: filter 0.15s ease, transform 0.15s ease;
  cursor: pointer;
  font-family: inherit;
  box-sizing: border-box;
}

button.btn-oauth {
  appearance: none;
  -webkit-appearance: none;
}

.btn-oauth:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
}

.btn-oauth-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

.btn-oauth-kakao {
  background: #fee500;
  color: #191600;
  border-color: #f0d800;
}

.btn-oauth-naver {
  background: #03c75a;
  color: #fff;
  border-color: #02b351;
}

.btn-oauth-naver .btn-oauth-icon {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
}

.btn-oauth-google {
  background: #fff;
  color: #1f2937;
  border-color: #d1d5db;
}

.btn-oauth-google .btn-oauth-icon {
  color: #4285f4;
  font-family: Arial, Helvetica, sans-serif;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 20px;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 600;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e2e8f0;
}

.auth-divider span {
  white-space: nowrap;
}

.oauth-buttons [hidden] {
  display: none !important;
}
