Contact Form 7 Style upload button

Ese boton de upload no se puede cambiar con css normal, toca hacer un truco.

span.resume-file {
position:relative;
}

span.resume-file:before {
content:”Upload file”;
position:absolute;
left:0;
padding:5px;
background:white;
color: rgb(64, 64, 64);
border: 1px solid #ccc;
width:100%;
font-size: 14px;
text-align:center;
border-radius:5px;
cursor:pointer;
margin-top: 10px;
}

span.resume-file>input {
visibility:hidden;
}