@charset "UTF-8";

@media screen and (min-width: 768px) and (max-width: 992px) {
    body{
        background-image: linear-gradient(to bottom, #5f2c82,#42B6DD );
    }
    
    section#login{
        width: 80vw;
        height: 300px;
    }

    section#login > div#imagem{
        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, #5f2c82,#42B6DD );
    }

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

    section#login > div#imagem{
        float: right;
        width: 40%;
        height: 100%;
    }
    
    section#login > div#formulario{
        float: left;
        width: 60%;
       
    }
    
    div#formulario > h1{
        font-size: 2em;
    }

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