@charset "UTF-8";

/*  Typical Device Breakpoints

Smartphones   481px até 768px 
Tablet 'portrait e landscape' 769px até 1024px 
Laptops e Desktops  1025px até 1440px
Telas Grandes (monitores wide 4K) acima de 1440px */

@media screen and (min-width: 769px) and (max-width: 1024px) {

    body {
        background-image: linear-gradient(to top, #DBEAFE, #F9FAFB);
    }

    section#login {
        width: 720px;
    }

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

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


@media screen and (min-width: 1024px) {

    body {
        background-image: linear-gradient(to top, #DBEAFE, #F9FAFB);
    }
    
    section#login {
        width: 1020px;
    }

    section#login > div#imagem {
        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: 0.8em;
}


}
