.container{
    width: 100%;
}

main{
    background-image: url('../img/bg-contato.png');
    background-size: cover;
    background-position: center;
}

section{
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

h2{
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1em;
    margin-top: 1em;
}

form{
    display: flex;
    flex-flow: column;
    background: #FBFBFB 0% 0% no-repeat padding-box;
    box-shadow: 0px 0px 25px #00000061;
    border-radius: 3px;
    padding: 2em;
}

label{
    display: flex;
    flex-flow: column;
    color: #126CFE;
    text-transform: uppercase;
    font-weight: 700;
    margin: .3em 0;
    font-size: 14px;
}

input, textarea{
    border-radius: 3px;
    background-color: #EFEFEF;
    border: none;
    padding: .3em .7em;
    resize: none;
    font-family: 'Raleway', sans-serif;
}

button{
    background-color: #1E242F;
    border-radius: 26px/26px;
    padding: 1em 1.5em;
    align-self: flex-end;
    color: #fff;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: 1em;
    display: flex;
    align-items: center;
    position: relative;
    right: 20%;
}

button::after{
    content: url('../img/enviar-after.png');
    position: absolute;
    right: -55%;
}

#endereco{
    background-color: #126CFE;
    color: #fff;
    padding: 2em 2em 2em 4em;
    font-weight: 700;
}

@media screen and (min-width: 993px){
    .container{
        width: 70%;
    }

    main{
        height: 100vh;
    }

    section{
        flex-flow: row;
    }
}