<button class="button" >submit</button>
*{
  margin: 0px;
  padding: 0px;
}
html, body{
  background: #f7f5f5;
}
.button{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.button{
  width: 200px;
  height: 70px;
  background: #407efb;
  border: none;
  border-bottom: 6px solid #001fff;
  padding: 16px;
  border-radius: 4px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  margin-top: 0px;
  transition: all 0.1s;
  outline: none;
}
.button:hover{
  margin-top: 2px;
  border-bottom-width: 3px;
  cursor: pointer;
}
.button:active{
  margin-top: 5px;
  border-bottom-width: 0px;
}

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.