/* Tiny brand-aligned splash for the orasis SSO bridge page. Loaded as a
   stylesheet because aspis-bio.com's CSP forbids inline styles. */
.orasis-bridge {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}
.orasis-bridge-splash {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: "Geist", system-ui, sans-serif;
  color: #888;
  font-size: 13px;
}
.orasis-bridge-splash strong {
  color: #ddd;
  font-size: 15px;
  font-weight: 600;
}
.orasis-bridge-splash .note {
  max-width: 420px;
  text-align: center;
  line-height: 1.5;
}
.orasis-bridge-splash .actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.orasis-bridge-splash .orasis-btn {
  padding: 7px 14px;
  border-radius: 6px;
  border: 1px solid #333;
  background: #1a1a1a;
  color: #ddd;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}
.orasis-bridge-splash .orasis-btn.is-primary {
  background: #4a8;
  color: #0a1216;
  border-color: #4a8;
}
