/***
Renderable Error Page
Linked to renderable_error.twig
***/
.error-container {
  margin: 0;
  padding: 0;
}

.error-message {
  max-width: 600px;
  margin: 100px auto;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  text-align: center;
}

.error-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

h1 {
  color: #FC2D38;
}

a {
  color: #3498db;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  text-align: left;
}

.error-action-button {
  width: auto;
  max-width: 226px;
  font-family: "Eina03-SemiBold";
  background-color: #fc2d38;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 16px;
  display: flex;
  height: 40px;
  padding: 8px 32px;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none !important;
  border-radius: 2px;
}