/* Shared provider buttons for sign-in, sign-up, and the account prompt. */
.social-auth-button {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 150ms ease, border-color 150ms ease;
}

.social-auth-button__icon {
  display: block;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.social-auth-button__label {
  flex: 1;
  text-align: center;
}

.social-auth-button--google {
  background-color: #fff;
  border-color: #747775;
  color: #1f1f1f;
  font-family: 'Google Sans', Arial, sans-serif;
}

.social-auth-button--google:hover {
  background-color: #f2f2f2;
  border-color: #1f1f1f;
}

.social-auth-button--facebook {
  background-color: #0866ff;
  border-color: #0866ff;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
}

.social-auth-button--facebook:hover {
  background-color: #0756d7;
  border-color: #0756d7;
}

.social-auth-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .social-auth-button {
    transition: none;
  }
}
