body {
    margin: 0;
    padding: 0;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background-image: url('/resources/imgs/background.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.box-conteiner {
    position: relative;
    float: left;
    width: 900px;
    min-height: 50%;

    background: rgba(250, 250, 250, 0.9);
    /* background-color: white; */
    /* border-radius: 10px 10px 10px 10px; */
    display: flex;
}

.div1 {
    position: relative;
    float: left;
    width: 50%;

    min-height: 100%;

    padding: 10px;

    background-image: url("/resources/imgs/logo/backgroud.png");
    background-size: 100% 100%;
    background-repeat: no-repeat;

}

.div2 {
    position: relative;
    float: left;
    width: 50%;

    min-height: 100%;
    padding: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
}

@media screen and (max-width: 800px) {
    .box-conteiner {
        display: block;
        align-items: normal;
        justify-content: left;
    }

    .box-conteiner:before {
        content: ' ';
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        opacity: 0.6;
        background-image: url("/resources/imgs/logo/backgroud.png");
        background-repeat: no-repeat;
        background-position: 50% 0;
        background-size: cover;
    }

    .div1 {
        width: 100%;
        margin: 5px 0px;
        min-height: 0px;
        background-image: none;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    .div2 {
        width: 100%;
        margin: 5px 0px;
        align-items: normal;
        justify-content: center;

        background: rgba(250, 250, 250, 0.4);
    }
}


.logomarca {
    position: relative;
    float: left;
    width: 50%;
    height: 100%;


    display: flex;
    align-items: center;
    justify-content: center;
    background-color: aqua;
}

.formlogin {
    position: relative;
    float: left;
    width: 100%;
    padding: 10px;
}

/* Full-width input fields */
input[type=text] {
    width: 100%;
    padding: 10px;
    margin: 5px 0 22px 0;
    border-radius: 10px 10px 10px 10px;
    display: inline-block;
    border: none;
    background: #f1f1f1;
}

input[type=password] {
    width: 100%;
    padding: 10px;
    margin: 5px 0 22px 0;
    border-radius: 10px 10px 10px 10px;
    display: inline-block;
    border: none;
    background: #f1f1f1;
}

input[type=email] {
    width: 100%;
    padding: 10px;
    margin: 5px 0 22px 0;
    border-radius: 10px 10px 10px 10px;
    display: inline-block;
    border: none;
    background: #f1f1f1;
}


a {
    color: #f1f1f1;
}

.redes-social {
    position: relative;
    float: left;
    width: 100%;
    padding: 0px;
    margin: 10px 0px 10px 0px;
    text-align: center;
}

.redes-social i {
    margin: 10px;
    width: 10px;
}

.iforme {
    position: relative;
    float: left;
    width: 100%;
    padding: 0;
    margin-top: 10px;
    text-align: center;
    font-size: 15px;
}

@media screen and (max-width: 800px) {
    body {
        background-image: url('/resources/imgs/backgroud_mobile.png');
    }

    .box-conteiner {
        width: 100%;
    }

}