How can I put the inputs / textareas in the center (but do I want the label to continue on the left)?
form {
width: 700px;
color: red;
}
form textarea,input {
display: block;
margin: 0 0 30px 0;
}
<form>
<input type="submit" name="publicar"/>
<input type="text" name="title" id="title" placeholder="Título"/>
<label for="info">Seu Texto</label>
<textarea id="info"></textarea>
</form>