@charset "utf-8";

@media screen and (min-width: 768px) and (max-width: 992px){ /*versão para tablet*/

    body {
    background-image: linear-gradient(to top, #827a9e, #253C59);
    }
    section#login {
    width: 70vw;
    height: 50%;
    }

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

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

    div#formulario > h1 {
        font-size: 1.8;
        text-align: center;
        margin-bottom: 10px;
    }

    div#formulario > p {
        font-size: 1.2em;

    }

}

@media screen and (min-width: 992px) {
    body{ /*versão para desktop*/
        background-image: linear-gradient(to top, #BC0E5D, #253C59);

    }

    section#login {
        width: 990px;
        height: 60%;
    }

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

    section#login > div#formulario{
        float: right;
        width: 50%;
        text-align: center;
    }

    div#formulario > h1 {
        font-size: 2em;
        text-align: center;
        margin-bottom: 10px;
    }

    div#formulario > p {
        font-size: 1.8em;
        margin: 20px 0px;
        

    }
    
}