/* Q-Connect – Fehlerseiten */

body { display: flex; flex-direction: column; min-height: 100vh; }

.error-page {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}
.error-box { text-align: center; max-width: 480px; }
.error-code {
  font-size: 6rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  opacity: .15;
}
.error-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: .75rem;
}
.error-desc { color: var(--color-text-muted); margin-bottom: 2rem; }
