@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:300,400,700|Roboto:300,400,400i,500,700');

html, body{
    height: 100%;
    position: relative;
    min-height: 100%;
}
body{
    scrollbar-face-color: #FFFFFF;
    scrollbar-track-color: #ccc;
    scrollbar-arrow-color: #ccc;
    scrollbar-shadow-color: #ccc;
    scrollbar-highlight-color: #ccc;
    scrollbar-darkshadow-color: #FFFFFF;
    scrollbar-3dlight-color: #FFFFFF;
    font-family: 'Roboto', sans-serif;
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
    font-variant: normal;
    text-align: left;
    font-size: 18px;
    color: #FFFFFF;
    line-height: 1.42857143;
    background-color: #E71721;
}
#main-container{
    min-height: 100%;
    position: relative;
}
#centro{
    /* Set the fixed height of the footer here + 35px de padding a separar do conteudo */
    padding-bottom: 96px;
}

/*TOP*/
    #top{
        height: 160px;
    }
    .logotipo{
        width: 340px !important;
        height: 85px !important;
        background-size: auto 100%;
        margin: 0 auto;
    }

/*FOOTER*/
    .footer{
        position: absolute;
        bottom: 0;
        width: 100%;
        /* Set the fixed height of the footer here */
        height: 96px;
    }
    #footer{
        min-height: 20px;
        padding: 40px 0 30px 0;
        border: none;
        box-shadow: none;
        border-radius: 0;
    }
    #footer p{
        font-size: 14px;
        line-height: 26px;
        font-weight: 400;
        color: #FFFFFF;
        margin: 0;
    }
    #footer i {
        color: #FFFFFF;
    }

/*TYPOGRAPHY*/
    a{
        color:#FFFFFF;
        text-decoration: none;
    }
    a:hover, a:focus{
        cursor: pointer;
        text-decoration: none;
        color: #77FC00;
        outline: none;
    }
    .help-block {
        margin-top: 0px;
        margin-bottom: 0px;
    }
    .help-block.with-errors {
        font-size: 12px;
    }

/*BUTTONS*/
    .btn{
        font-size: 23px !important;
        line-height: 40px !important;
        font-weight: 500;
        -webkit-transition: all 0.6s ease-in-out;
        -moz-transition: all 0.6s ease-in-out;
        -o-transition: all 0.6s ease-in-out;
        -ms-transition: all 0.6s ease-in-out;
        transition: all 0.6s ease-in-out;
    }
    .btn-group .btn+.btn, .btn-group .btn+.btn-group, .btn-group .btn-group+.btn, .btn-group .btn-group+.btn-group {
        margin-left: -2px;
    }
    .btn-group-vertical>.btn+.btn, .btn-group-vertical>.btn+.btn-group, .btn-group-vertical>.btn-group+.btn, .btn-group-vertical>.btn-group+.btn-group{
        margin-top: -2px;
    }
    .bootstrap-select .btn:focus{
        outline: none !important;
    }
    .btn:active{
        box-shadow:none !important;
    }
    .btn:focus{
        outline: none !important;
    }
    .btn-primary{
        padding: 10px 45px;
        background-color: #FFFFFF !important;
        border-color: #FFFFFF !important;
        color: #E71721 !important;
    }
    .btn-primary:hover, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary,.btn-primary:focus{
        background-color: #E71721  !important;
        border-color: #FFFFFF  !important;
        outline: none !important;
        color: #FFFFFF !important;
    }

/*CUSTOM*/
    .welcome__title{
        font-size: 48px;
        font-weight: 100;
        color: #FEFEFE;
        margin-top: 55px;
        margin-bottom: 90px;
    }
    .welcome__subtitle{
        font-family: 'Roboto Slab', serif ;
        font-size: 56px;
        line-height: 64px;
        font-weight: 700;
        letter-spacing: 0.1px;
        margin-bottom: 90px;
    }
    .btn-create{
        margin-right: 100px;
    }
    .login__title{
        font-family: 'Roboto Slab', serif;
        font-size: 36px;
        line-height: 48px;
        font-weight: 700;
        letter-spacing: 0.1px;
        margin-bottom: 70px;
    }
    .register__wrapper{
        width: 300px;
        margin: 0 auto;
        margin-bottom: 25px;
    }
    .register__wrapper .form-group{
        text-align: left;
        position: relative;
        margin-bottom: 40px;
    }
    select.form-control{
        background-color: #E71721;
        border: none;
        border-bottom: 1px solid #ccc;
        box-sizing: border-box;
        font-size: 32px;
        line-height: 48px;
        width: 100%;
        height: auto;
        color: #FFFFFF;
        padding: 0;
        box-shadow: none;
    }
    select.form-control:focus{
        border-color: #f68e98;
        box-shadow: none;
    }
    label{
        font-family: 'Roboto', serif;
        font-size: 24px;
        line-height: 54px;
        font-weight: 400;
        letter-spacing: 0.2px;
        opacity: 1;
        color: #FFFFFF;
    }
    .input {
        background-color: transparent;
        border: none;
        border-bottom: 1px solid #ccc;
        box-sizing: border-box;
        font-size: 32px;
        line-height: 48px;
        letter-spacing: 0.1px;
        width: 100%;
    }
    .input:focus {
        outline: none;
    }
    input::-webkit-input-placeholder {
        color: #aaa;
    }
    input:focus::-webkit-input-placeholder {
        color: #f68e98;
    }
    .input:focus + .underline {
        transform: scale(1);
    }
    .underline {
        background-color: #f68e98;
        height: 2px;
        position: absolute;
        bottom: 0;
        left: 0;
        -webkit-transform: scale(0, 1);
        transform: scale(0, 1);
        -webkit-transition: all 0.5s linear;
        transition: all 0.5s linear;
        width: 100%;
    }