/* Login page — Google OAuth sign-in button (extracted from login.html) */

.google-signin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #fff;
  border: 1px solid #dadce0;
  border-radius: 4px;
  color: #3c4043;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.1);
}

.google-signin-button:hover {
  background-color: #f8f9fa;
  box-shadow: 0 1px 3px 0 rgba(60, 64, 67, 0.2);
  color: #3c4043;
  text-decoration: none;
}

.google-signin-button:active {
  background-color: #f1f3f4;
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3);
}

.google-signin-button svg {
  flex-shrink: 0;
}
