#otp {
    --otp-cell-gap: 8px;
    --otp-cell-size: clamp(40px, 11vw, 56px);
    gap: var(--otp-cell-gap);
}

#otp .otp-input.form-control {
    aspect-ratio: 1 / 1;
    border: 1px solid #ccc;
    border-radius: 8px;
    flex: 0 0 var(--otp-cell-size);
    font-size: 20px;
    height: var(--otp-cell-size);
    margin: 0;
    max-width: var(--otp-cell-size);
    min-width: var(--otp-cell-size);
    padding: 0;
    text-align: center;
    width: var(--otp-cell-size);
}

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

#otp input[type="number"] {
    -moz-appearance: textfield; /* For Firefox */
}
