<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.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-right: 12px;
  border: 1px solid var(--color-gray-3);
  background: var(--color-gray-3);
  color: var(--color-black);
  border-radius: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .numberPasswordInput .inputDisplay .secretNumber {
    margin-right: 20px;
  }
}
.numberPasswordInput .inputDisplay .secretNumber:last-child {
  margin-right: 0;
}
.numberPasswordInput .inputDisplay .secretNumber.focus {
  border: 1px solid var(--color-white);
}
.numberPasswordInput .inputDisplay .secretNumber.filled {
  background: var(--color-white);
  border: 1px solid var(--color-white);
}
.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 {
  font-size: 24px;
  font-weight: bold;
  vertical-align: top;
  opacity: 0;
}
</pre></body></html>