@charset "UTF-8";


/* TABLETS */
@media screen and (min-width: 768px) and (max-width: 992px) {
    
    body {
        background-image: linear-gradient(to top, #49a09d, #5f2c82);
    }
    
    section#frame-base-login {
        width: 90vw;
        height: 60vh;
    }

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

    section#frame-base-login div#frame-formulario {
        float: right;
        width: 70%;
    }

    form div.campo-login-senha label {
        text-align: center;
    }
}

/* TELAS GRANDES */
@media screen and (min-width: 992px){

    body {
        background-image: linear-gradient(to top, #49a09d, #5f2c82);
    }

    section#frame-base-login {
        width: 950px;
        height: 60vh;
    }

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

    section#frame-base-login div#frame-formulario {
        float: right;
        width: 50%;
    }

    div#frame-formulario h1 {
        font-size: 2em;
    }

    div#frame-formulario p {
        font-size: 1.2em;
    }

    form div.campo-login-senha label {
        text-align: center;
    }
}