@charset "UTF-8";

/* Celular paisagem / Tablet retrato */
@media screen and (min-width: 768px) {
    section {
        width: 600px;
        height: 300px;
    }

    section div#imagem {
        float: left;
        width: 40%;
        height: 100%;
    }

    section div#formulario {
        float: right;
        width: 60%;
        height: 100%;
    }

    form div.campo {
        height: 40px;
    }

    form div.campo input {
        width: 85%;
    }

    form button {
        height: 30px;
    }
}

/* Notebook / Tablet paisagem */
@media screen and (min-width: 1024px) {
    html, body {
        background-image: linear-gradient(to top, #002b03, #08550d);
    }

    section {
        width: 750px;
        height: 400px;
    }

    section div#imagem {
        float: left;
        width: 40%;
        height: 100%;
    }

    section div#formulario {
        float: right;
        width: 60%;
        height: 100%;
    }

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

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

    form div.campo {
        height: 50px;
    }

    form div.campo input {
        width: 88%;
    }

    form div.botoes {
        margin-top: 25px;
    }

    form button {
        height: 40px;
    }
}

/* Desktop / TV */
@media screen and (min-width: 1440px) {
    html, body {
        background-image: linear-gradient(to top, #002b03, #08550d);
    }

    section {
        width: 1000px;
        height: 500px;
    }

    div#formulario h1 {
        font-size: 2.6em;
        margin-top: 20px;
    }

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

    form div.campo {
        height: 60px;
        margin-bottom: 10px;
    }

    form div.campo input {
        width: 91%;
        height: 60%;
        font-size: 1.1em;
    }

    form div.botoes {
        margin-top: 35px;
    }

    form button {
        height: 45px;
        font-size: 1.1em;
    }
}