@charset "UTF-8";

/* Versao para tablet */
@media screen and (min-width: 768px) and (max-width: 992px) {
    
    body {
        background-image: linear-gradient(to left, #49a09d, #5f2c82);
    }

    section#login {
        width: 85vw;
        border-radius: 50px;
        overflow: hidden;
    }

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

    section#login > div#formulario {
        float: right;
        width: 70%;
        margin-top: calc(220px/2);
    }

    .campo > input {
        width: 300px;
    }
}

/* Versoes desktop e above */
@media screen and (min-width: 992px) {
    body {
        background-image: linear-gradient(to right, #49a09d, #5f2c82);
    }

    section#login {
        width: 80vw;
        max-width: 1900px;
        height: 650px;
        border-radius: 50px;
        overflow: hidden;
    }

    section#login > div#imagem {
        float: right;
        width: 50%;
        height: 100vh;
        background-position: bottom right;
        background-size: cover;
        background-attachment: fixed;
    }

    section#login > div#formulario {
        float: left;
        width: 50%;
        margin-top: calc(320px/2);
    }

    .campo {
        margin-bottom: 40px;
    }

    .campo > input {
        width: 350px;
    }

    .btnPrimary {
        display: inline;
        transition: 0.5s;
        width: 155px;
        margin-right: 10px;
    }

    form > div.butoes > a {
        display: inline;
        width: 240px;
        transition: 0.5s;
    }
}