/**
 * Sales demo hub — additions layered on top of the production Prism
 * auth styles in prism.css. Everything here is scoped to the demo
 * launcher buttons so the login look-and-feel stays untouched.
 */

.demo-btn-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

/* Matches .auth-button geometry, with a two-line label. */
.demo-path-btn {
  display: block;
  width: 100%;
  padding: 16px 18px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(47, 104, 255, 0.9), rgba(245, 151, 42, 0.85));
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(47, 104, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.demo-path-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(47, 104, 255, 0.4);
}

.demo-path-btn small {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.demo-path-btn:nth-child(1) { background: linear-gradient(135deg, rgba(47, 104, 255, 0.92), rgba(90, 149, 245, 0.88)); }
.demo-path-btn:nth-child(2) { background: linear-gradient(135deg, rgba(47, 104, 255, 0.9), rgba(23, 168, 154, 0.85)); }
.demo-path-btn:nth-child(3) { background: linear-gradient(135deg, rgba(16, 42, 94, 0.95), rgba(62, 124, 224, 0.9)); }
.demo-path-btn:nth-child(4) { background: linear-gradient(135deg, rgba(47, 104, 255, 0.9), rgba(245, 151, 42, 0.85)); }

.auth-footer {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
  text-align: center;
}

.auth-muted {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  color: rgba(15, 23, 42, 0.55);
}

.demo-link-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 0.5rem;
}

.demo-link-row a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #2f68ff;
  text-decoration: none;
}

.demo-link-row a:hover {
  text-decoration: underline;
}

.reset-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: #2f68ff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
}

.reset-btn:hover {
  background: rgba(47, 104, 255, 0.08);
}

.disclaimer-footer {
  margin: 1.5rem 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
