/* OTP Input Styles */
.otp-wrapper {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
    direction: ltr;
    /* Force LTR for OTP inputs globally */
}

.otp-input {
    width: 45px;
    height: 55px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 24px;
    text-align: center;
    font-weight: bold;
    color: #333;
    transition: all 0.3s ease;
    outline: none;
}

.otp-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.otp-input.filled {
    border-color: #10b981;
    background-color: #f0fdf4;
}