Resposta
label[for="nome"] {
position: relative;
}
label[for="nome"]:after {
content: "";
width: 1em;
height: 1em;
padding: 0.5em;
position: absolute;
top: 100%;
left: 0;
background-color: #851944;
background-image: url(../imagens/usuario.png);
background-repeat: no-repeat;
background-size: 50% 50%;
background-position: center;
}
#nome {
width: calc(100% - 1em);
position: relative;
left: 2em;
}
label[for="email"] {
position: relative;
}
label[for="email"]:after {
content: "";
width: 1em;
height: 1em;
padding: 0.5em;
position: absolute;
top: 100%;
left: 0;
background-color: #851944;
background-image: url(../imagens/email.png);
background-repeat: no-repeat;
background-size: 50% 50%;
background-position: center;
}
#email {
width: calc(100% - 1em);
position: relative;
left: 2em;
}