.form {
  max-width: 240px;
  margin: 25px auto 0;
  
}
.form input {
  margin: 0 5px;
  text-align: center;
  line-height: 80px;
  font-size: 50px;
  border: solid 1px #ccc;
  box-shadow: 0 0 5px #ccc inset;
  outline: none;
  width: 20%;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  border-radius: 3px;
}
.form input:focus {
  border-color: purple;
  box-shadow: 0 0 5px teal inset;
}
.form input::-moz-selection {
  background: transparent;
}
.form input::selection {
  background: transparent;
}

.pbutton {
  margin: 15px 0 25px;
  width: 100%;
  text-transform: uppercase;
}

.btn-dim{
font-size: 13px; 	
}