/* Print failure page. Namespaced under .failure because stylesheet_link_tag
   :app loads every sheet on every page. */
.failure {
  max-width: 34rem;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #16181d;
}

.failure__title { font-size: 1.5rem; line-height: 1.25; margin: 0 0 1rem; }
.failure__text { margin: 0 0 1rem; }
.failure__actions { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2rem; }

.failure__button {
  display: block;
  padding: 0.9rem 1.25rem;
  background: #9c1420;
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 700;
}

.failure__link { text-align: center; color: #9c1420; }
