@charset "utf-8";

/*
    Paleta de cores:
    #193c40
    #315955
    #568c82
    #8fa69d
    #d9c9c7

*/


@media screen and (min-width: 768px) and (max-width: 992px) {
    body {
        background-image: linear-gradient(to top, #193c40, #d9c9c7, #568c82);
    }

    section#login {
        width: 80vw;
        height: 300px;
    }

    section#login > div#imagem {
        float: left;
        width: 30%;
        height: 100%;
    }

    section#login > div#form {
        float: right;
        width: 70%;
    }

}

@media screen and (min-width: 992px) {
    body {
        background-image: linear-gradient(to top, #193c40, #d9c9c7, #568c82);
    }

    section#login {
        width: 950px;
        height: 350px;
    }

    section#login > div#imagem {
        float: right;
        width: 50%;
        height: 100%;
    }

    section#login > div#form {
        float: left;
        width: 50%;
    }

    div#form > h1 {
        font-size: 2em;
    }

    div#form > p {
    font-size: 1.2em;
    margin: 20px 0px;
    }
}