/* Error Page */
.error-card {
  max-width: 480px;
  margin: 0 auto;
  padding: 2.5rem 2rem;
  text-align: center;
}

.error-icon {
  margin-bottom: 1.5rem;
}

.error-code {
  font-size: 3.5rem;
  font-weight: 700;
  color: #296EB6;
  margin: 0 0 0.25rem;
  line-height: 1;
}

.error-title {
  font-size: 1.75rem;
  color: #222;
  margin-bottom: 0.75rem;
}

.error-message {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.error-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.error-actions .btn-primary {
  display: inline-block;
  background: #30A1DA;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2.5rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s ease;
  width: 220px;
  text-align: center;
}

.error-actions .btn-primary:hover {
  background: #296EB6;
}

.error-actions .btn-secondary {
  display: inline-block;
  color: #296EB6;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.2s ease;
}

.error-actions .btn-secondary:hover {
  color: #1a4d80;
  text-decoration: underline;
}
