/* index.css — login / register shared styles (GM Vantage) */
@import url("shared.css");

body.auth {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at top, rgba(95,164,199,0.10), transparent 60%),
    radial-gradient(ellipse at bottom, rgba(95,164,199,0.06), transparent 60%),
    var(--bg);
  padding: 20px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 36px 32px;
}

.auth-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.auth-logo img {
  width: 180px;
  height: auto;
}

.auth-card h2 {
  text-align: center;
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.auth-card .sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 24px;
}

.auth-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
  padding: 10px;
}

.auth-footer {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 20px;
}
.auth-footer a { color: var(--primary-hover); cursor: pointer; text-decoration: underline; }
