I am trying to place the input field at the center of the page, any help. So far i have only been able to center the contents horizontal, the vertical centering has failed.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.container {
display: flex;
align-items: center;
justify-content: center;
}
input[type=text] {
margin: 0;
}
form {
border: 1px solid blue;
}
</style>
</head>
<body>
<div class="container">
<form action="">
<input type="text">
</form>
</div>
</body>
</html>