.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 #ff0000;
      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(#ff0000, 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;
      }
    }

  }
.otp-sub{
        width:100%;
        background-color: #ff0000;
        color:#fff;
        margin-top: 10px;
    }
.email-sub{
        width:100%;
        background-color: #ff0000;
        color:#fff;
        margin-top: 10px;
}
.otp-sub:hover{
        width:100%;
        background-color: #111111;
        color:#fff;
    }
.email-sub:hover{
        width:100%;
        background-color: #111111;
        color:#fff;
    }
    .otp-verify{
       text-align: justify;
    }
    .email-verify{
       text-align: justify;
    }
    .email-verify p{
       margin: 0;
       padding:10px 0 10px 0;
    }
    .otp-verify p{
       margin: 0;
       padding:10px 0 10px 0;
    }
    @media (max-width: 600px) {
        .otp-input-fields {
            justify-content: center; /* Center input fields on smaller screens */
            gap: 5px; /* Reduce gap to fit in smaller screens */
        }
        .otp__digit {
            max-width: 30px; /* Reduce max width to fit on smaller screens */
        }
    }
