﻿html {
font-family:  'Roboto', sans-serif;
font-size: 16px;
color: #fff;
}

section {margin:0 auto;text-align:center;}

label {
    display:block;
    margin-top:20px;
    letter-spacing:1px;
}

.formulario {
    display:block;
    margin:0 auto;
    width:80%;
    text-align:left;
}

form {
    margin:0 auto;
    width:100%;
}
 
input, textarea {
    width:100%;
    height: 20px;
	border-radius: 5px;
    background:none;
    border:1px solid #fff;
    padding:5px;
    margin-top:5px;
	font-family: 'Roboto', sans-serif;
    font-size:16px;
    color:#fff;
}
 
textarea {
    height:100px;
	resize:none;
}
 
#submit {
    width:110px;
    height: 30px;
	padding: 5px;
	font-size:17px;
	border-radius: 5px;
    background:#000;
    filter: alpha(opacity=30);
    background-color: rgba(0,0,0,0.3);
	color:#fff;
    border:none;
    margin-top:20px;
    cursor:pointer;
	
}

#submit:hover {
	color:rgb(6, 123, 219);
	background:#000;
    filter: alpha(opacity=50);
    background-color: rgba(0,0,0,0.5);
	
}