/**
 * TheAccountant — "Sign in with Google" button.
 *
 * Matches the login page design system (gold/ink editorial palette, pill CTAs,
 * spring hover lift). White surface + official multi-color Google "G" per
 * Google's branding guidelines, full-width to align with the form.
 */

.ta-login-google-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  box-sizing: border-box;
  margin-top: 14px;
  padding: 14px 20px;

  background: #ffffff;
  color: #1a1a26;
  border: 1.5px solid rgba(10, 10, 15, 0.12);
  border-radius: 60px;

  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  -webkit-font-smoothing: antialiased;

  transition: transform .35s cubic-bezier(.16, 1, .3, 1),
              box-shadow .35s cubic-bezier(.16, 1, .3, 1),
              border-color .2s ease,
              background .2s ease;
  box-shadow: 0 1px 2px rgba(10, 10, 15, 0.04);
}

.ta-login-google-button:hover,
.ta-login-google-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(201, 147, 58, 0.4);
  box-shadow: 0 12px 32px rgba(10, 10, 15, 0.10);
  text-decoration: none;
  color: #08080d;
  outline: none;
}

.ta-login-google-button:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(10, 10, 15, 0.06);
}

.ta-login-google-button:visited {
  color: #1a1a26;
}

.ta-login-google-button::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cpath fill='%23EA4335' d='M24 9.5c3.54 0 6.71 1.22 9.21 3.6l6.85-6.85C35.9 2.38 30.47 0 24 0 14.62 0 6.51 5.38 2.56 13.22l7.98 6.19C12.43 13.72 17.74 9.5 24 9.5z'/%3E%3Cpath fill='%234285F4' d='M46.98 24.55c0-1.57-.15-3.09-.38-4.55H24v9.02h12.94c-.58 2.96-2.26 5.48-4.78 7.18l7.73 6c4.51-4.18 7.09-10.36 7.09-17.65z'/%3E%3Cpath fill='%23FBBC05' d='M10.53 28.59c-.48-1.45-.76-2.99-.76-4.59s.27-3.14.76-4.59l-7.98-6.19C.92 16.46 0 20.12 0 24c0 3.88.92 7.54 2.56 10.78l7.97-6.19z'/%3E%3Cpath fill='%2334A853' d='M24 48c6.48 0 11.93-2.13 15.89-5.81l-7.73-6c-2.15 1.45-4.92 2.3-8.16 2.3-6.26 0-11.57-4.22-13.47-9.91l-7.98 6.19C6.51 42.62 14.62 48 24 48z'/%3E%3C/svg%3E");
}

/* Social-auth block wrapper + divider, mirroring the page's OR divider. */
.ta-login-social {
  margin-bottom: 8px;
}

.ta-login-social .ta-login-google-button {
  margin-top: 0;
}

.ta-login-social-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 0;
  color: rgba(10, 10, 15, 0.3);
  font-family: 'JetBrains Mono', 'SFMono-Regular', Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ta-login-social-divider::before,
.ta-login-social-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(10, 10, 15, 0.1);
}
