In my contact form I need to leave some information about the contact on one side, and on the other side a form with email and message. But the part of my form of information is occupying everything, and when I try to add the email input it falls down.
Intheorangepartwastostaytheinputemail.
.col-md-12 {
background-color: red;
}
.col-md-6 {
background-color: blue;
}
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet" />
<div class="contato-content display-table">
<div class="container">
<div class="col-md-12">
<div class="col-md-6 ">
<h1>Fale conosco</h1>
<div class="linha-separador mt-2"></div>
<p class="mt-2">Lorem ipsum dolor sit amet consectetur adipisicing elit. Mollitia cupiditate aliquid molestiae non obcaecati</p>
<div class="contato-itens">
<div class="circulo-itens mr-5"><i class="fas fa-phone"></i>
<p class="mt-5">xxxx</p>
</div>
<div class="circulo-itens mr-5"><i class="far fa-envelope"></i>
<p class="mt-5">xxxx</p>
</div>
<div class="circulo-itens mr-5"><i class="fas fa-map-marker-alt"></i>
<p class="mt-5">xxxx</p>
</div>
</div>
</div>
<div class="col-md-6">
<form>
<input class="form-control form-control" type="text" placeholder="EMAIL">
</form>
</div>
</div>
</div>
</div>