I want to align some buttons to the center of the page. May I please know how can I do it here in my CSS.
button {
background-color: #6495ED;
color: white;
padding: 16px 25px;
margin: 0 auto;
border: none;
cursor: pointer;
width: 100%;
border-radius: 8px;
display: block;
position: middle;
}
<button type="button" onclick="document.getElementById('id01').style.display='block'" style="width: auto;">User Login</button>
<br><br><br>
<button type="button" onclick="document.getElementById('id02').style.display='block'" style="width:auto; ">Admin Login</button>