.otp-container {
    display: flex;
    justify-content: center;
    gap: 8px; /* Reduced gap */
    margin-top: 20px;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    min-width: 350px;
}

.otp-input {
    width: 18px; /* Adjusted width */
    height: 13px;
    text-align: center;
    font-size: 13px;
    border: 2px solid #ccc;
    border-radius: 5px;
    padding: 10px 8px 10px 8px;
    outline: none;
    column-gap: 8px;
    flex-shrink: 0; /* Prevents squeezing */
}

.styled-button {
    background-color: #899499;
    color: white;
    border: none;
    padding: 6px 14px;
    font-size: 11px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.styled-button:hover {
    background-color: #5a6268;
}

#divTOTP {
    width: fit-content;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
}
