/* /css/error.css */
body {
    font-family: 'SUIT-Regular', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    text-align: center;
    padding: 80px 20px;
}

.error-container {
    max-width: 600px;
    margin: 0 auto;
}

.error-code {
    font-size: 96px;
    font-weight: bold;
    color: #204B62;
}

.error-message {
    font-size: 24px;
    margin-top: 20px;
    color: #666;
}

.error-actions {
    margin-top: 40px;
}

.error-actions a {
    display: inline-block;
    padding: 12px 24px;
    background-color: #204B62;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.error-actions a:hover {
    background-color: #0d2e42;
}
