/* WyConnect - "Sign in with Lee Wyatt Corp" drop-in button styles */
.wyconnect-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6 48%, #ec4899);
  color: #fff;
  font: 800 15px/1 Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0.1px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(124, 58, 237, 0.30);
  transition: filter 0.15s ease, transform 0.15s ease, opacity 0.15s ease;
}
.wyconnect-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.wyconnect-btn:active { transform: translateY(0); }
.wyconnect-btn:disabled { opacity: 0.6; cursor: not-allowed; filter: none; transform: none; }

.wyconnect-btn .wy-mark {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.30);
}
.wyconnect-btn .wy-dot { color: #ffd9ec; }
.wyconnect-btn .wy-label { font-weight: 800; }

/* Compact: brand mark only */
.wyconnect-btn.wy-compact .wy-mark { padding-right: 0; border-right: 0; }
.wyconnect-btn.wy-compact .wy-label { display: none; }
