* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: rgb(121, 66, 172);
}

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

input[type="text"] {
    position: relative;
    left: 0;
    top: 6px;
    padding: 0 10px;
    width: 150px;
    margin: 0px 0 0 5px;
    border: 1px solid rgb(228, 220, 220);
    outline: none;
    font-size: 36px;
    color: transparent;
    text-shadow: 0 0 0 rgb(71, 71, 71);
    text-align: center;
}

input:focus {
  outline: none;
}

.pinButton {
    text-align:center;
  border: none;
  background: none;
  font-size: 1.2em;
  border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -webkit-border-radius: 50%;
  height: 45px;
  font-weight: 550;
  width: 45px;
  color: transparent;
  text-shadow: 0 0 0 rgb(102, 101, 101);
  margin: 4px 15px;
  appearance: none;
    -webkit-appearance:none;
    align-items: center;
    
}

#point {
    font-weight: 900;
}

.clear,
.enter {
    font-size: 0.8em !important;
    background: black;
    color: white;
    margin-left: 18px;
}

.pinButton:hover {
  box-shadow: #506ce8 0 0 1px 1px;
}
.pinButton:active {
  background: #506ce8;
  color: #fff;
}
.clear:hover {
  box-shadow: #ff3c41 0 0 1px 1px;
}
.clear:active {
  background: #ff3c41;
  color: #fff;
}
.enter:hover {
  box-shadow: #47cf73 0 0 1px 1px;
}
.enter:active {
  background: #47cf73;
  color: #fff;
}
