Two different shadow effect

#front-end
How can I make this kind of shadow effect (like picture below)? I've tried this code but didn't get expected result.
Here is the codepen link: https://codepen.io/kabirsumn/pen/NWZWzYa

here is the CSS code I aplied on the element:
button {
    width: 90px;
    border: none;
    padding: 10px;
    border-radius: 15px;
    background-color: #202020;
    color: #d1d5db;
    cursor: pointer;
    box-shadow: 0 3px 3px rgba(19, 19, 19, 0.5), 0 0 3px rgba(209, 213, 219, 0.5);
}


Can anyone please help?
image.png
4787153.jpg
Was this page helpful?