/* error.css */

body.error-page {
  background-color: #f8f9fa;
  font-family: 'Open Sans', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.error-container {
  max-width: 500px;
  padding: 30px;
}

.error-container .logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.error-code {
  font-size: 100px;
  font-weight: 800;
  color: #222;
  margin-bottom: 10px;
}

.error-text {
  font-size: 18px;
  color: #555;
  margin-bottom: 25px;
}

.error-container .button {
  padding: 12px 28px;
  background: #1c1c1c;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background 0.3s;
  display: inline-block;
}

.error-container .button:hover {
  background: #444;
}