/* CSS-RESET */
* {
	margin:0;
	padding:0;
	border:0;
	text-decoration:none;
	font-family: 'Lato';
	color: #666;
}

body {
	background: url(../images/bg-desktop.jpg) top left no-repeat;
}


ul {
	list-style: none;
}

#content {
	width: 100%;
	margin:auto;
}

#logo {
	display: block;
	max-width: 30%;
	margin:5vh auto 2vh auto;
}


#frase {
	width: 100%;
}

#content > p.frase {
	font-weight: bold;
	color: #333;
	text-align: center;
	font-size: 1.3em;
	line-height: 1.8em;
	margin: 3vh 0 0 0

}

#content > p.frase2 {
	text-align: center;
	margin: 20px 0 25px 0;
	font-size:20px;
}

form {
	width: 60%;
	display: block;
	margin: auto;

}

form input, form textarea {
	padding:2%;
	border-radius: 15px;
	width: 90%;
	font-size:16px;
	color: #333;
	margin-bottom: 25px;
	font-weight: bolder;
}

form input[type='submit'] {
	background-color: #00D936;
	display: block;
	margin: auto;
	width: 60%;
	color: #fff;
	-webkit-appearance:none;
	cursor: pointer;
}

::-webkit-input-placeholder {
   color: #999;
}

:-moz-placeholder { /* Firefox 18- */
   color: #999;  
}

::-moz-placeholder {  /* Firefox 19+ */
   color: #999;  
}

:-ms-input-placeholder {  
   color: #999;  
}