$component: '.verify-code-input';

#{$component} {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;

  &__view {
    height: 128px;
    width: 96px;
    background-color: #F2F2F2;
    text-align: center;
    border-radius: 8px;
    font-size: larger;

    &--active {
      height: 124px;
      width: 92px;
      border: solid 2px #F2662B;
    }
  }
  
  &__input {
    position: absolute;
    left: -1000px;
  }

  &__item {
    height: 100%;
    color: #484848;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;

    &--active {
      color: #F2662B;
    }
  }
}