i've been trying to center my form & input horizontally but it doesn't work
I've tried using margin & padding but nothing works.
body {
background-color: #2F2F2F;
}
/* Form (outside) */
.form-inline {
padding: 1% 0%;
}
/* Input (inside) */
.form-control {
background-color: #353434;
border: #3E3E3E 2px solid;
/* Top right bottom left */
/* Align the writing in the center*/
text-align: center;
}
/* Search text */
.form-control::placeholder {
color: #AEAEAE;
text-align: center;
}
<header>
<!-- Search inputForm -->
<div class="container">
<form class="form-inline my-2 my-lg-0" action="#POST">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search">
</form>
</div>
</header>