/* "Sign in / Sign up with Google" button used on /login and /signup, on top
   of the shared .login-wrap/.login-card styles already defined in app.css.
   Deliberately close to Google's own branding guidelines (white button,
   grey border, full-color "G" mark) without hotlinking any Google-hosted
   asset -- the G mark below is a small inline SVG path (see lib.js /
   signup_lib.js), not an <img src> pointed at Google's CDN. */

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px;
  margin-top: 4px;
  background: #fff;
  color: #3c4043;
  border: 1px solid #dadce0;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.google-btn:hover {
  background: #f8f9fa;
  box-shadow: 0 1px 2px rgba(60, 64, 67, 0.3);
}

.google-btn:active {
  background: #f1f3f4;
}

.google-btn-icon {
  width: 18px;
  height: 18px;
  flex: none;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  color: var(--text-muted, #64748b);
  font-size: 0.85rem;
}

.login-divider::before,
.login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border, #dbe3ee);
}

@media (prefers-color-scheme: dark) {
  .google-btn {
    background: #2d2f31;
    color: #e8eaed;
    border-color: #5f6368;
  }
  .google-btn:hover {
    background: #35373a;
  }
  .google-btn:active {
    background: #3c3f42;
  }
}
