JSFiddle - React, Tailwind, and code Playground
by Kaique Covo
HTML
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<div class="form-group d-flex justify-content-center">
<img src="http://placeskull.com/100/100" width="100px" alt="Fuzzy Cardigan"
class="img-thumbnail img-responsive" >
</div>
<div class="container ">
<form action="" method="POST" name="formulario" >
<div class="form-group">
<div class=" col-md-6 offset-md-3">
<label > Usuário ou E-MAIL</label>
<input type="text" name="login" class="form-control " placeholder=" Usuário ou E-MAIL" required="" >
</div>
</div>
<div class="form-group">
<div class="col-md-6 offset-md-3">
<label> SENHA </label>
<input type="password" name="rg" class="form-control" placeholder="SENHA" required="" >
</div>
</div>
<div class="form-group">
<div class="col-md-6 offset-md-3">
<input type="submit" value="Login" class="btn btn-primary" name="">
<div class="form-check">
<label > <input class="form-check-input" type="checkbox" value="" > Lembre-me </label>
</div>
</div>
</div>
</form>
</div>