.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
    text-align: center;
}

.error-content {
    background: white;
    padding: 40px;
    border-radius: 12px;
}

.error-title {
    font-size:3em;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.error-message {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 20px;
}

.error-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
}

.error-btn:hover {
    background: #2c2c5c;
}
