/* Nevoura — Google Sign-In button
   Uses the site's shared tokens (falls back to sane defaults if a page
   hasn't defined them, e.g. wp-login.php). */

.nv-google-btn {
  --_ink: var(--nv-ink, #0c0c0c);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: #fff;
  color: var(--_ink);
  border: 1px solid rgba(12, 12, 12, 0.14);
  border-radius: 4px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  line-height: 1;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.nv-google-btn:hover,
.nv-google-btn:focus {
  border-color: rgba(12, 12, 12, 0.3);
  box-shadow: 0 1px 3px rgba(12, 12, 12, 0.08);
  color: var(--_ink);
}

.nv-google-btn__icon {
  display: inline-flex;
  flex-shrink: 0;
}

.nv-google-btn__label {
  white-space: nowrap;
}

.nv-auth-gate--login-page {
  margin-bottom: 20px;
}

.nv-auth-gate--login-page .nv-google-btn {
  width: 100%;
  justify-content: center;
}

.nv-auth-gate--account-page {
  margin-bottom: 20px;
}

.nv-auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
  color: rgba(12, 12, 12, 0.4);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nv-auth-divider::before,
.nv-auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(12, 12, 12, 0.1);
}
