@charset "UTF-8";

:root {
    --cor1: #49a09d;
    --cor2: #5f2c82;
}

@media screen and (min-width: 768px) {
    body {
    background-image: linear-gradient(to top, var(--cor1), var(--cor2));
    }

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

    section#login > div#imagem {
        background-position: center center;

        float: left;
        width: 30%;
        height: 100%;
    }

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

@media screen and (min-width: 992px){
    section#login {
        width: 950px;
        height: 350px;
    }

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

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

    section#login > div#formulario > h1 {
        font-size: 2rem;
    }

    section#login > div#formulario > p {
        font-size: 1rem;
    }
}