.error-body {
    background-color: #f8f9fa;
    min-height:100%
}

.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.error-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    max-width: 600px; /* Ограничение ширины карточки */
}

.error-code {
    font-size: 8em;
    font-weight: bold;
    color: #dc3545; /* Красный цвет для ошибки */
    margin-bottom: 10px;
}

.error-message {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.error-return-link {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    transition: color 0.3s ease; /* плавный переход цвета */
}

.error-return-link:hover {
    color: #0056b3;
}
