JavaScript Date UTC datetime-local

I have a form where user can introduce date and time with input format datetime-local. When the form is summited a problem appears for the start-date “Value must 11:52 AM or earlier”, my local time is 13:52″. So i have to select -2 hours. How can I remove this problem. The form is limited for the start date to select only today and last 72 hours, same for end time.
The code is the following:

 <input type="datetime-local" name="start_timestamp" id="start_timestamp" required>
 <input type="datetime-local" name="end_timestamp" id="end_timestamp" required>

<script>
    //Do not let to select END-TIME and START TIME  in the PAST
    var today = new Date();
    var past = new Date(today.setDate(today.getDate() - 3)).toISOString().slice(0, 16);
    var today = new Date().toISOString().slice(0, 16);

    document.getElementsByName("start_timestamp")[0].min = past;
    document.getElementsByName("start_timestamp")[0].max = today;
</script>

<script>
    var today = new Date();
    var future = new Date(today.setDate(today.getDate() + 3)).toISOString().slice(0, 16);
    var today = new Date().toISOString().slice(0, 16);

    document.getElementsByName("end_timestamp")[0].min = today;
    document.getElementsByName("end_timestamp")[0].max = future;
</script>

I have an image also:

enter image description here