.banner{
    background-color: #FFFFFF;
    min-height: 300px;
    background-image: url(../img_banner/ferrari.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center -150px;
    transition: all ease 1s;
    position: relative;
    text-align: center;
}

.banner h1{
    font-family: titulo;
    font-size: 48px;
    line-height: 48px;
    text-align: center;
    color:#FFFFFF;
    text-shadow: 0px 0px 6px rgba(0,0,0,.8), 0px 0px 8px rgba(0,0,0,.7);
    text-transform: uppercase;
    position: absolute;
    bottom: 32px;
    width: 100%;
    padding: 0px;
    margin: 0px;
}


/*inputs*/

.section-site .conteiner label{
    display:block;
    margin-bottom: 8px;
    font-size: 18px;
}

.section-site .conteiner input{
    background: rgba(214, 223, 246, 0.3);
    width: 95%;
    margin-bottom: 18px;
    padding: 8px;
    border: 1px solid #D6DFF6;
    border-radius: 4px;
    font-size: 16px;
    font-size: 18px;
    line-height: 27px;
}

.section-site .conteiner input:focus{
    border: 2px solid #0040BF;
}


.section-site .conteiner button{
    text-transform: uppercase;
}

.section-site .conteiner input[type="checkbox"]{
    display: none;
}

.section-site .conteiner input[type="checkbox"] + label{
    display: block;
    margin-bottom:16px; 
    cursor:pointer;
    background-image: url(../img/checkbox_false.png);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 24px; 
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.section-site .conteiner input[type="checkbox"]:checked + label{
    background-image: url(../img/checkbox_true.png);
}
/*fim inputs*/

.form-cadastro{
    max-width: 600px;
    margin: auto;
}

.div-captcha{
    margin-bottom: 16px;
    margin-top: 8px;
}

.section-site .conteiner button.btn.btn-facebook{
    margin-right: 16px;
}


@media screen and (max-width:45em){
    .banner{
        background-position: center center;
    }
}