@charset "UTF-8";

@media screen and (min-width: 768px) and (max-width: 992px){
    body{
        background-image: linear-gradient(to top,#003cff, #700404 );
    }

    section#login{
        width: 90vw;
        height: 300px;
    }
    section#login > div#imagem{
        background-image: url(../img/tablet.jpg);
        background-size: cover;
        background-position: left center;
        float: left;
        width: 30%;
        height: 100%;
    }
    section#login > div#formulario{
        float: right;
        width: 70%;
    }
}

@media screen and (min-width:992px){
    body{
        background-image: linear-gradient(to top, #003cff, #700404);
    }

    section#login{
        width: 950px;
        height: 400px;
    }   
    section#login > div#imagem{
        background-image: url(../img/desktop.jpg);
        float: right;
        width: 50%;
        height: 100%;
    }
    section#login > div#formulario{
        float: left;
        width: 50%;
    }
    div#formulario>h1{
    font-size: 2em;    
    }
    
    div#formulario>p{
        font-size: 1.2em;
        margin: 20px 0px;
    }
}