Demo
HTML&CSS
<div class="form_simple1">
<form action="" method="post">
<p>郵便番号</p>
<input type="text" name="post_number">
<p>住所</p>
<input type="text" name="address">
<p>氏名</p>
<input type="text" name="name">
<p>電話番号</p>
<input type="text" name="tel">
<p>メールアドレス</p>
<input type="text" name="e_mail">
<button type="submit" name="send" value="form_simple1">送信</button>
</form>
</div>
.form_simple1{
width: 80%;
text-align: left;
margin-left: auto;
margin-right: auto;
padding: 2rem;
border: 1px solid #ccc;
}
.form_simple1 input{
display: block;
width: 100%;
height: 2rem;
outline: none;
margin-bottom: 1rem;
border: 1px solid #ccc;
}
.form_simple1 button{
display: block;
cursor: pointer;
outline: none;
padding: 1rem 2rem;
margin-top: 2rem;
margin-left: auto;
margin-right: auto;
border: 1px solid #ccc;
}