﻿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-color:#01AED9;
	color:#fff;
    border:none;
    margin-top:20px;
    cursor:pointer;
	
}

#submit:hover {
	background:#000;
	
}