почему у меня submit не по центру а у левого края? ниже код (родитель flex), уже по разному пробовал писал, не пойму голову сломал
<section class="block3">
<form action="tz.php" method="post">
<input type="text" name="login" class="pl" placeholder="Введите ваш номер телефона" />
<input type="submit" class="pl1" value="Заказать обратный звонок" />
</section>
.block3{
display:flex;
margin-top:30px;
flex-direction:column;
width:300px;
align-self:center;
justify-content:center;
align-items:center;
}
.pl1{
align-items:center;
align-self:center;
text-align:center;
width:224px;
height:50px;
background-color:#5B89CE;
color:white;
border-radius:10px 10px 10px 10px;
border:none;
}