@import "../../styles/themes/variable.scss";

#{$xh-prefix}-password-input {
  display: flex;

  &-list {
    display: flex;
    margin: 0 auto;
    padding: 0;
  }

  &-item {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border: 1px solid #d1d1d1;
    font-size: 40px;

    &:not(:first-child) {
      border-left-width: 0;
    }
  }

  &-mask {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #333;
    border-radius: 50%;
    animation: scale 0.3s ease;
  }
}

@keyframes scale {
  0% {
    transform: scale(0.6);
  }

  100% {
    transform: scale(1);
  }
}
