/* HAPImatic SSO gateway landing styles (issue #1003).
   Colors mirror the web theme's CSS variables:
   --brand-accent #4ade80, --app-link #5ae6ab, --app-bg #1c1c1e. */

:root {
  --brand-accent: #4ade80;
  --app-link: #5ae6ab;
  --app-bg: #1c1c1e;
  --app-fg: #e5e5e7;
  --app-border: #3a3a3c;
}

* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, system-ui, "Segoe UI", sans-serif;
  background: var(--app-bg);
  color: var(--app-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

.card {
  width: 100%;
  max-width: 22rem;
  padding: 2rem;
  text-align: center;
}

.logo {
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--app-fg);
  -webkit-text-stroke: 2px var(--brand-accent);
  margin-bottom: 0.25rem;
}

.tagline {
  font-size: 0.875rem;
  color: #8e8e93;
  margin-bottom: 2rem;
}

.google-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--app-border);
  border-radius: 0.6rem;
  background: transparent;
  color: var(--app-fg);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.15s ease;
}

.google-btn:hover {
  border-color: var(--brand-accent);
}

.google-btn svg {
  width: 18px;
  height: 18px;
}

.footer {
  margin-top: 2rem;
  font-size: 0.75rem;
  color: #8e8e93;
}

.footer a {
  color: var(--app-link);
}
