@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
/* CSS Document */
html {
	background:#FAFAFA;
	height:100%;
}
body {
	font-family: 'Open Sans', sans-serif;
	width:100%;
	max-width:1200px;
	margin:0 auto;
	padding:20px;
	background:#FFF;
	box-sizing:border-box;
	height:100%;
}
.contenedor {
	max-width:800px;
	margin:40px auto 60px auto;
}
.header {
	text-align:center;
}
.header img {
	box-sizing:border-box;
	margin-bottom:20px;
	max-width:800px;
	margin-left:auto;
	margin-right:auto;
}

h1 {
	text-align:center;
	text-transform:uppercase;
    color: #5e2b6c;
    font-weight: bold;
    font-size: 42px;
    margin-bottom: 40px;
}
h2 {
	font-size:16px;
	text-align:center;
    margin-bottom: 0;
}
form {
	width:100%;
	display:block;
}
label {
	font-weight:bold;
	padding:20px;
	font-size:20px;
	width:50%;
}
input[type="text"] {
    font-size: 14px;
	display:block;
	margin:0 auto;
	padding:15px 30px;
	border-radius:30px;
	border:#666 thin solid;
	width:100%;
	text-align:center;
	text-transform:uppercase;
	box-shadow: 2px 2px 3px black;
	max-width:600px;
}
input[type="text"]:hover {
    border-color: #5e2b6c;
}
input[type="number"] {
	padding:10px;
	width:50%;
}
.enviar {
    display: block;
    margin: 2px auto;
    min-height: 50px;
    text-align: left;
	border-bottom:#CCC thin solid;
	font-size:14px;
	font-weight:bold;
	max-width:60%;
	line-height:150%;
    padding: 20px 0 10px 0;
}
.enviar em {
	font-weight:normal;
	font-size:18px;
	margin-bottom:20px;
}
input[type="submit"],
.descargar {
    box-shadow: 2px 2px 3px black;
    font-size: 16px;
    letter-spacing: 0.05em;
	cursor:pointer;
	margin:5px auto;
	padding:15px 40px;
	color:#FFF;
	font-weight:bold;
	border:#5e2b6c thin solid;
	background:#5e2b6c;
	width:auto;
	text-align:center;
	text-decoration:none;
	display:block;
	line-height:150%;
	text-transform:uppercase;
    border-radius: 30px;
}
input[type="submit"]:hover,
.descargar:hover {
	color:#5e2b6c;
	background:#FFF;
}
.descargar span {
	text-transform:uppercase;
	display:block;
}
.descargar {
    margin-top: 20px;
}
.error {
	border:#B42022 2px solid;
	padding:20px;
	width:100%;
	box-sizing:border-box;
	text-align:center;
	color:#B42022;
    font-size: 14px;
    line-height: 200%;
}
select {
	width:100%;
	padding:10px;
}
@media (max-width:600px) {
    .header img {
        width: 100%;
        height: auto;
    }
    .contenedor {
	    max-width:100%;
    }
    h2 {
        font-size: 18px;
        line-height: 28px;
    }
    input[type="text"] {
        box-sizing: border-box;
    }
    .enviar {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
}