.social-login-block {
  padding: 1rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  margin: 1rem 0;
}

.social-login-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.social-login-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #111827;
  margin: 0 0 0.5rem;
}

.social-login-description {
  color: #6b7280;
  margin: 0;
  font-size: 0.875rem;
}

.social-login-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 750px) {
  .social-login-buttons {
    max-width: 47.8rem;
    margin: 0 auto;
  }
}

.social-button {
  width: 100%;
  border-radius: 0.75rem;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-weight: 500;
  transition: all 0.2s;
  transform: scale(1);
  border: 1px solid;
  cursor: pointer;
  font-size: 0.875rem;
}

.social-button:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.social-button:active {
  transform: scale(0.98);
}

.social-button-icon {
  width: 1.25rem;
  height: 1.25rem;
}

.social-button-text {
  font-size: 0.875rem;
}

/* Google */
.social-button-google {
  background-color: white;
  color: #374151;
  border-color: #d1d5db;
}

.social-button-google:hover {
  background-color: #f9fafb;
}

/* Facebook */
.social-button-facebook {
  background-color: #1877F2;
  color: white;
  border-color: #1877F2;
}

.social-button-facebook:hover {
  background-color: #166FE5;
}

/* X (Twitter) */
.social-button-x {
  background-color: black;
  color: white;
  border-color: black;
}

.social-button-x:hover {
  background-color: #1f2937;
}

/* Apple */
.social-button-apple {
  background-color: white;
  color: black;
  border-color: black;
}

.social-button-apple:hover {
  background-color: #f3f4f6;
}

/* LINE */
.social-button-line {
  background-color: #00B900;
  color: white;
  border-color: #00B900;
}

.social-button-line:hover {
  background-color: #00A500;
}

/* Instagram */
.social-button-instagram {
  background: linear-gradient(to right, #E4405F, #833AB4);
  color: white;
  border-color: #E4405F;
}

.social-button-instagram:hover {
  background: linear-gradient(to right, #D93A57, #7A359F);
}

/* TikTok */
.social-button-tiktok {
  background-color: black;
  color: white;
  border-color: black;
}

.social-button-tiktok:hover {
  background-color: #1f2937;
}

.social-login-footer {
  margin-top: 1rem;
  text-align: center;
}

.social-login-terms {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}

.social-login-link {
  color: #2563eb;
  text-decoration: none;
}

.social-login-link:hover {
  text-decoration: underline;
}
