.font-h2-strong {
    color: #848484;
    font-weight: 700;
    font-size: 30px;
    line-height: 31.68px;
    font-family: "Lexend", sans-serif;
}

#otp-input {
    display: flex;
    column-gap: 8px;
}

#otp-input input {
    margin:1px;
    text-align: center;
    padding: 10px 7px 10px 7px;
    border: 2px solid #ddd;
     box-shadow: 0 0 0 0.20rem rgba(221, 221, 221, 0.20);
    border-radius: 4px;
    outline: none;
    height: 64px;
    width: 60px;
}

#otp-input input:focus {
    border: 2px solid #E84D1A;
    box-shadow: 0 0 0 0.25rem rgba(235, 129, 83, 0.25);
}

#otp-input input:focus::placeholder {
    color: transparent;
}

#otp-input input::-webkit-outer-spin-button,
#otp-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
#otp-input input[type="number"] {
    -moz-appearance: textfield; /* Firefox */
}



@media only screen and (min-width: 0px)and (max-width: 480px) {
    #otp-input input {
        margin:1px;
        text-align: center;
        padding: 7px 5px 7px 5px;
        border: 2px solid #ddd;
         box-shadow: 0 0 0 0.20rem rgba(221, 221, 221, 0.20);
        border-radius: 4px;
        outline: none;
        height: 9vh;
        width: 13vw;
    }


}