/* ----------------------------------------------------------------------- */
/* Standalone (signed-out) pages                                            */
/* ----------------------------------------------------------------------- */

.standalone {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--gap-6) var(--gap-5);
}
.standalone__brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: var(--gap-6);
  text-align: center;
}
.standalone__brand:hover { color: var(--accent); }
.standalone__card {
  width: 100%;
  max-width: 26rem;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: var(--gap-6);
}
.standalone__card h1 { margin-top: 0; }

/* "— or —" separator between the Entra SSO button and the magic-link
   form on /login. Pure CSS rule so we don't pull in 'unsafe-inline'
   styles for one decorative divider. The pseudo-elements paint the
   rule lines; the `or` text sits flush in the middle. */
.login-divider {
  display: flex;
  align-items: center;
  gap: var(--gap-3);
  margin: var(--gap-4) 0;
  text-transform: lowercase;
}
.login-divider::before,
.login-divider::after {
  content: "";
  flex: 1 1 auto;
  border-top: 1px solid var(--rule);
}
