.two_factor_block p {
    font-size: 14px;
    line-height: 17px;
    color: var(--tblack);
    margin-bottom: 10px;
    text-align: center;
}

#otp_target {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fake-inputs {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.realInput {
    position: absolute;
    opacity: 0;

}

.otp-fake-input {
    width: 50px;
    height: 50px;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: text;
    transition: border-color 0.3s ease;
    margin: 0 !important;
}

.otp-fake-input.otpdesigner__focus__ {
    border-color: #595dfc !important;
    box-shadow: 0 0 5px rgba(89, 93, 252, 0.5);
}

.otp-content {
    font-weight: bold;
    color: #333;
}