.pv-google-auth {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.pv-google-auth__button {
  align-items: center;
  background: #ffffff;
  border: 1px solid rgba(30, 45, 42, 0.24);
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(12, 32, 28, 0.08);
  color: #1f2937;
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  gap: 0.75rem;
  justify-content: center;
  min-height: 44px;
  padding: 0.625rem 1rem;
  transition:
    border-color 180ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 180ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
}

.pv-google-auth__button:hover {
  border-color: rgba(30, 45, 42, 0.42);
  box-shadow: 0 3px 9px rgba(12, 32, 28, 0.12);
}

.pv-google-auth__button:active {
  transform: translateY(1px);
}

.pv-google-auth__button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.pv-google-auth__button:focus-visible {
  outline: 3px solid rgba(47, 132, 112, 0.46);
  outline-offset: 2px;
}

.pv-google-auth__icon {
  flex: 0 0 auto;
  height: 20px;
  width: 20px;
}

.pv-google-auth__divider {
  align-items: center;
  color: rgba(255, 255, 255, 0.66);
  display: flex;
  font-size: 0.75rem;
  gap: 0.75rem;
  justify-content: center;
  line-height: 1.4;
  text-transform: lowercase;
  white-space: nowrap;
}

.pv-google-auth__divider::before,
.pv-google-auth__divider::after {
  background: rgba(255, 255, 255, 0.18);
  content: "";
  flex: 1 1 auto;
  height: 1px;
  min-width: 2rem;
}

.pv-google-auth__error {
  color: #fecaca;
  font-size: 0.875rem;
  line-height: 1.45;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .pv-google-auth__button {
    transition: none;
  }
}
