You will need to use two shadows for the shadows for the left shadow and one for the correct one. You need to specify both shadow shadows in the same box-shadow attribute and share them with a coma:
box-shadow: -60px 0px 100px -90px #000000, 60px 0px 100px -90px #000000;
Both must have a negative propagation value, so they are shorter than the height of the divs and do not overflow from the top and bottom.
Demo
output:

You will need to adjust the shadow values โโto adapt them to the size of the element that you want to use.
HTML:
<div></div>
CSS:
div{ height:500px; width:300px; margin:0 auto; box-shadow: -60px 0px 100px -90px #000000, 60px 0px 100px -90px #000000; }
source share