@charset "UTF-8";
/*Paleta de cores*/
:root{
    --verde: #49a09d;
    --lilas: #5f2c82;
}

/*tablet*/
@media screen and (min-width:768px) and (max-width:992px){
    body{
        background-image: linear-gradient(to top, var(--verde), var(--lilas));
    }

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

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

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

/*telas*/
@media screen and (min-width:992px){
    body{
        background-image: linear-gradient(to top, var(--verde), var(--lilas));
    }

    section#login{
        width:950px;
        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;
        text-align: center;
        margin-bottom: 10px;
    }
    
    div#formulario > p{
        font-size:1.2em ;
    }
}