@charset "UTF-8";

/*
For Mobile Devices – 320px — 480px
iPads and Tablets – 481px — 768px
Laptops and small screen – 769px — 1024px
Large screens and Desktops – 1025px — 1200px
TV and Extra Large Screens – 1201px and more 
*/

@media screen and (min-width:769px) and (max-width:1024px) { /*configuração para tablet*/
    body {
        background-image: linear-gradient(to top, #F2BF91, #455059);
    }
    section#login {
        width: 80vw;
        height: 80vh;
        display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    }
    section#login > div#imagem {
        float: left;
        width: 40%;
        height: 100%;
    }
    section#login > div#formulario {
        float: right;
        width: 60%;
    }
}

@media screen and (min-width:1024px){
    body{
        background-image: linear-gradient(to top, #F2BF91, #455059);
    }
    section#login {
        width: 990px;
        height: 350px;

    }
    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: 1.2em;
        margin: 20px 0px;
    }
    
}