@charset "UTF-8";
/* mobile first */
/* body*/
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
html{
    width: 100%;
    height: 100%;
    font-family: 'Courier New', Courier, monospace;
    background-image: url(../image/shutterstock_1398425048_648x430.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 35%;
}
body{
    width: 100%;
    height: 100%;
    max-height: 95%;
    background-color: rgba(0, 255, 255, 0.15);
}
h1, p{text-shadow: 2px 2px 6px aquamarine;}
/* /body*/

/* header*/
header{
    margin-top: 3%;
    height: auto;
    min-height: 20%;
}
header > h1{
    font-size: 2em;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    text-align: center;
}
header > #ao{
    padding: 0;
    margin: 0;
    font-size: 0.7em;
}
header > p{
    margin-top: 4.5%;
    text-align: center;
}
/* /header*/

/* main*/
main{
    width: 100%;
    height: auto;
    min-height: 50%;
    background-image: linear-gradient(to right, rgba(127, 255, 212, 0.1), rgba(0, 0, 255, 0.15))
}
main > h1{
    margin: 7% 0;
    font-size: 160%;
    text-align: center;
}
main > form{
    width: 100%;
    text-align: center;
}
main > form > .linha{margin: 4% 0;}
main > form > p > label > #iemail{
        padding: 0 5%;
        text-align: center;
        border-radius: 10px;
}
main > form > p > label > #isenha{
        padding: 0 5%;
        text-align: center;
        border-radius: 10px;
}
main > form > .botao{

    transition: backgound-color .3s ease, transform .2s ease;
    border-radius: 6px;
    margin: 1.2% 0;
    width: 80%;
    max-width: 450px;
    background-color: rgba(127, 255, 212, 0.685);
}
main > form > .botao:hover{
    background-color: rgb(127, 255, 212);
    transform: scale(1.02);
}
main > form > #enviar{margin: 5% 0 2%;}
main > form > #reset{
    width: 60%;
    max-width: 350px;
    margin-bottom: 4%;
}
main > form > #checkbox{
    margin-top: 5%;
    display: flex;
}
main > form > #checkbox > #psalvar, #probo{
    width: 48%;
    display: block;
    font-size: 0.7em;
}
/* /main*/

/* footer*/
footer{
    height: auto;
    min-height: 20%;
}
footer > p{
    width: 100%;
    padding: 2% 0 0;
    font-size: 0.8em;
    text-align: center;
    align-items: center;
}
footer > #p1{display: flex;}
footer > #p2{
    text-align: center;
    font-size: 0.9em;
}
footer > #logos > a{text-decoration: none;}
footer > #p1::before, #p1::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid;
    margin: 0 10px;
}
footer > #logos{
    width: 100%;
    height: 30%;
    display: flex;
    padding: 1% 20%;
    margin: 1% 0;
}
footer > #logos > a:hover{transform: scale(1.02);}
footer > #logos > a{
    width: 20%;
    margin: 0 auto;
}
footer > #logos > a > .llogo{
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background-color: rgba(255, 255, 255, 0.750);
}
footer > #logos > a > #lapple{border-radius: 40%;}
/* /footer*/

/* Landscape */
@media screen and (orientation: landscape){
    /* body */
    html{
        width: auto;
        min-width: 100vw;
        height: auto;
        min-height: 100vh;
        background: url(../image/shutterstock_1398425048_648x430.png) no-repeat center;
        background-size: cover;
    }
    body{
        width: 90%;
        max-width: 600px;
        height: auto;
        min-height: 100px;
        margin: 0 auto;
    }
    header, main, footer{background-color: rgba(127, 255, 212, 0.15);}
    /* /body */

    /* header */
    header{margin: 0;}
    /* /header */

    /* main */
    main > h1{
        margin: 0;
        padding: 5%;
    }
    main > form > p > label > #iemail{
        padding: 0 10%;
        text-align: center;
        border-radius: 10px;
    }
    main > form > p > label > #isenha{
        padding: 0 10%;
        text-align: center;
        border-radius: 10px;
    }
    /* /main */
    
}
/* /mobile first */

/* others */
@media screen and (min-width: 1000px) {
    /* body */
    html{
        display: flex;
        justify-content: center;
        align-items: center;
        background: linear-gradient(rgb(2, 118, 172), rgb(72, 75, 243));
    }
    body{
        width: 100%;
        min-height: 90%;
        max-width: 600px;
        max-height: 700px;
        border-radius: 3%;
        box-shadow: 5px 5px 20px rgb(10, 133, 190);
        background: url(../image/shutterstock_1398425048_648x430.png) no-repeat center;
        background-size: cover;
    }
    /* /body */

    /* header */
    header{background-color: unset;}
    header > h1{font-size: 3em;}
    header > p{font-size: 1.3em;}
    /* /header */

    /* main */
    main > h1{font-size: 2em;}
    /* /main */

    /* footer */
    footer{background-color: unset;}
    /* /footer */
}
/* /others */