Add two props fullWidth and maxWidth="md" in your Dialog component like this :
<Dialog
{...your_other_props}
fullWidth
maxWidth="sm"
>
{/* Your dialog content */}
</Dialog>
You can change md to sm, xs, lg and xl as per your requirement.