<div class="container">
  <div class="neumorphism"></div>
</div>
body {
  background-color: #e8e8e8;
  height: 300px;
  position: relative;
}

.container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.neumorphism {
  width:200px;
  height: 100px;
  border-radius: 20px;
  background: #e8e8e8;
  box-shadow:  15px 15px 30px #bebebe, 
               -15px -15px 30px #ffffff;
  cursor: pointer;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.