.title{
    max-width: 400px;
    margin: auto;
    text-align: center;
    font-family: "Poppins", sans-serif;
    h3{
      font-weight: bold;
    }
    p{
      font-size: 12px;
      color: #118a44;
      &.msg{
        color: initial;
        text-align: initial;
        font-weight: bold;
      }
    }
  }

  .otp-input-fields{
    margin: auto;
    background-color: white;
    box-shadow: 0px 0px 8px 0px #02025044;
    max-width: 400px;
    width: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 40px;

    input{
      height: 40px;
      width: 40px;
      background-color: transparent;
      border-radius: 4px;
      border: 1px solid #2f8f1f;
      text-align: center;
      outline: none;
      font-size: 16px;
      &::-webkit-outer-spin-button,
      &::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
      }

      /* Firefox */
      &[type=number] {
        -moz-appearance: textfield;
      }
      &:focus{
        border-width: 2px;
        border-color: darken(#2f8f1f, 5%);
        font-size: 20px;
      }
    }
  }

  .result{
    max-width: 400px;
    margin: auto;
    padding: 24px;
    text-align: center;
    p{
      font-size: 24px;
      font-family: 'Antonio', sans-serif;
      opacity: 1;
      transition: color 0.5s ease;
      &._ok{
        color: green;
      }
      &._notok{
        color: red;
        border-radius: 3px;
      }
    }
  }

  .modal-open .modal-backdrop {
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 1 !important;
  }


  .nojs_init {
    position: relative;
    animation:nojs-animation 0.2s step-end;
    -moz-animation:nojs-animation 0.2s step-end; /* Firefox */
    -webkit-animation:nojs-animation 0.2s step-end; /* Safari and Chrome */
    -o-animation:nojs-animation 0.2s step-end; /* Opera */
    }

    @keyframes nojs-animation
    {
    from {visibility:hidden;opacity:0;}
    to {visibility:visible;opacity:1;}
    }

    @-moz-keyframes nojs-animation /* Firefox */
    {
    from {visibility:hidden;opacity:0;}
    to {visibility:visible;opacity:1;}
    }

    @-webkit-keyframes nojs-animation /* Safari and Chrome */
    {
    from {visibility:hidden;opacity:0;}
    to {visibility:visible;opacity:1;}
    }

    @-o-keyframes nojs-animation /* Opera */
    {
    from {visibility:hidden;opacity:0;}
    to {visibility:visible;opacity:1;}
    }
