/* error-screens.css: стили для экранов ошибок */

.error-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: var(--space-xl);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-screen h2 {
  margin: 0 0 var(--space-md) 0;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-text);
}

.error-screen p {
  color: #666;
  margin: 0 0 var(--space-lg) 0;
  font-size: var(--font-size-base);
  line-height: 1.5;
}

.error-screen .btn {
  margin-top: var(--space-sm);
}










