Просто сделайте div, содержащий ваш from, и сделайте его style align: center; как пример ниже:
<!DOCTYPE html>
<html>
<body>
<p>welcome</p>
<div style="text-align: center;">
<form>
<label for="x1">Input x1:</label>
<input type="text" id="x1" name="x1"><br>
<label for="x2">Input x2:</label>
<input type="text" id="x2" name="x2"><br>
<button type="button">Compute</button><br>
<button type="button">Clean</button><br>
<label for="Midpoint">Midpoint result:</label>
<input type="text" id="Midpoint" name="Midpoint" placeholder="Try again"><br>
</form>
</div>
</body>
</html>