/**
 * Social login buttons on /user/login and /user/register.
 * Full-width rectangles matching the Log in submit button.
 */

.social-login-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  margin: 0 0 1.5rem;
}

.social-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.25rem 1rem;
  border: 1px solid #d0d5dd;
  border-radius: 8px;
  background: #fff;
  color: #1f2937;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
  box-sizing: border-box;
}

.social-login-btn:hover,
.social-login-btn:focus {
  background: #f5f7fa;
  color: #1f2937;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.social-login-btn__icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
