#pinpad form {
  width: 99%;
  margin: 5px auto;
  background: #fff;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 5px 5px 5px 5px rgba(0, 0, 0, 0.3);
  border-radius: 5px;
}

#displayPass,.auth-input {
  padding: 0 40px;
  border-radius: 5px;
  /*width: 350px;*/
  margin: auto;
  border: 1px solid rgb(228, 220, 220);
  outline: none;
  font-size: 60px;
  color: transparent;
  text-shadow: 0 0 0 rgb(71, 71, 71);
  text-align: center;
  width: inherit;
}

input:focus {
  outline: none;
}

.pinButton {
  border: none;
  background: none;
  font-size: 2em;
  border-radius: 50%;
  height: 70px;
  font-weight: 600;
  width: 70px;
  /*color: transparent;*/
  text-shadow: 0 0 0 rgb(102, 101, 101);
  margin: 8px 20px;
}

.clear,
.enter {
  font-size: 1em !important;
}

.pinButton:hover {
  background: #08a5f3;
}
.pinButton {
  box-shadow: #7cc5f5 0 0 1px 1px;
}

.pinButton:active {
  background: #50a1e8;
  color: #fff;
}

.clear:hover {
  box-shadow: #ff3c41 0 0 1px 1px;
}

.clear:active {
  background: #ff3c41;
  color: #fff;
}

.enter {
  background: hsl(140, 74%, 88%);
}

.enter:hover {
  box-shadow: #47cf73 0 0 1px 1px;
}

.enter:active {
  background: #47cf73;
  color: #fff;
}

@media (max-width: 767px){
  .pinButton {
    border: none;
    background: none;
    font-size: 1.2em;
    border-radius: 50%;
    height: 40px;
    font-weight: 500;
    width: 40px;
    /*color: transparent;*/
    text-shadow: 0 0 0 rgb(102, 101, 101);
    margin: 3px 10px;
  }
}