* {
    padding: 0;
    margin: 0;
}
body {
    overflow: hidden;
	background-color: #000;
	color: #FFF;
	font-family: "Helvetica Neue", Quicksand, sans-serif;
}

.content{
	width: 100%;
	height: 100vh;

	display: flex;
	justify-content: center;
	align-items: center;
}

span.logo{
    display: block;
    margin: 0 auto 20px;
    width: 300px;
    height: 60px;
    background-image: url(/IMG/LatamLogo.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
button.enviar {
    background-color: #e8e501;
    color: #000;
    -webkit-transition: 0.5s ease-in-out 0s;
    -moz-transition: 0.5s ease-in-out 0s;
    -o-transition: 0.5s ease-in-out 0s;
    cursor: pointer;
    margin: 20px 0 0;
}
button.enviar:hover {
    background-color: #dad605;
    color: #000;
}
button.enviar,
input {
    font-size: 1.2em;
    border-radius: 5px 5px 5px 5px;
    -moz-border-radius: 5px 5px 5px 5px;
    -webkit-border-radius: 5px 5px 5px 5px;
    padding: 10px;
}
input {
    width: 90%;
    margin: 20px 0 0;
}
input[type="email"]::placeholder,
input[type="text"]::placeholder {
    color: #000 !important;
}

.form{
	text-align: center;
}
