.numberPasswordInput {
  position: relative;
  width: 240px;
  height: 50px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .numberPasswordInput {
    width: 280px;
  }
}
.numberPasswordInput input[type="number"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.numberPasswordInput .inputDisplay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.numberPasswordInput .inputDisplay .secretNumber {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin: 0 5px;
  border: 1px solid #fff;
  border-radius: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .numberPasswordInput .inputDisplay .secretNumber {
    margin: 0 10px;
  }
}
.numberPasswordInput .inputDisplay .secretNumber.focus {
  border: 1px solid #ff6b00;
  color: #ff6b00;
}
.numberPasswordInput .inputDisplay .secretNumber.filled {
  background: #ff6b00;
  border: 1px solid #ff6b00;
  color: #fff;
}
.numberPasswordInput .inputDisplay .secretNumber.filled .secretNumberStar {
  opacity: 1;
}
.numberPasswordInput .inputDisplay .secretNumber.focus.filled {
  background: transparent;
  border: 1px solid #ff6b00;
  color: #ff6b00;
}
.numberPasswordInput .inputDisplay .secretNumber.focus.filled .secretNumberStar {
  opacity: 1;
}
.numberPasswordInput .inputDisplay .secretNumberStar {
  margin-top: 8px;
  font-size: 24px;
  vertical-align: top;
  opacity: 0;
}
