#error-page {
  background-image: url('/assets/page-error-background-8a73d2-2025-07-25T16-52-54-275Z.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-color: #0f172a;
  color: #f8fafc;
}

.error-content {
  position: relative;
  animation: fadeIn 0.6s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 640px) {
  #error-page {
    background-size: 250%;
  }
}
