*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'muli', sans-serif;
}

/* Scroll bar */

::-webkit-scrollbar-track {
    background-color: #ccc;
}
::-webkit-scrollbar {
    width: 5px;
    background: #ccc;
}

::-webkit-scrollbar-thumb {
    background: #999;
}

html, body{
    width: 100%;
    height: 100%;
}

.grupo-input{
    width: 100%;
    margin: 5px 0px;
}

.grupo-input label{
    color: #626262;
    font-size: 13px; 
    text-transform: capitalize;
    margin-bottom: 0px;
}

.grupo-input .campo-input{
    width: 100%;
    height: 40px;
    border-radius: 5px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    padding: 0px 10px;
    margin-top: 4px;
    background-color: #ffffff;
}

.campo-input input{
    width: calc(100% - 10px);
    height: 100%;
    border:none;
    font-size: 13px;
    outline: none;
    background-color: transparent;
}

.campo-input i{
    color: #626262;
    font-size: 14px;
    margin-right: 10px;
}

.banner{
    height: 100vh;
    z-index: 2;
}

.row{
    margin: 0;
}

.fundo{
    position: fixed;
    bottom: 0;
    z-index: -1;
}

.grupo-submit{
    width: 100%;
    height: 40px;
    border: none;
    border-radius: 5px;
    margin: 10px 0px;
    background-color: #009546;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grupo-submit a, .grupo-submit  button{
    width: 100%;
    height: 100%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
}

.grupo-submit a:hover{
    text-decoration: none;
}

.grupo-submit input{
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    color: #fff;
    font-size: 14px;
}


#cadastro{
    width: 100%;
    height: 40px;
    margin: 10px 0px;
    border-radius: 5px;
    border: 1px solid #DBC000;
    background-color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
}

#cadastro a{
    display: block;
    color: #DBC000;
    font-size: 14px;
    padding:9px 20px ;
}


#cadastro:hover{
    background-color: #DBC000;
}

#cadastro:hover a{
    color: #fff;
    text-decoration: none;
}

header{
    width: 100%;
    height: 80px;
    padding: 0px 62px;
    display: flex;
    align-items: center;
}

.section-header {
    width: calc(100% - 15px);
    margin-bottom: 20px;
}

.section-header h2 {
    text-transform: capitalize;
    margin-bottom: 5px;
    color: #272300;
    font-weight: bold;
    font-size: 20px;
}

.section-header div {
    width: 30px;
    height: 5px;
    background-color: #dbc000;
}

.form{
    width: calc(100% - 30px);
    margin: 10px 15px;
}

.pointer{
    cursor: pointer;
}

.titulo-form {
    padding: 0px 15px;
    margin: 10px 0px;
    color: #444;
    font-size: 15px;
}

.redp {
    color: #B91C1C;
}

@media(max-width: 767px){
    img{
        height: 60px;
    }

    .login{
        padding: 0px 10% ;
    }

    header{
        padding: 0px 30px;
    }

    header img{
        height: 40px;
    }
}