@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: #ececec;
    height: 100vh;
    display: flex;
    align-items: center;
}

.principal-container {
    padding: 3% 10% 3% 10%;
    display: flex;
    justify-content: center;
    height: 90vh;
}

/*------------ Login container ------------*/
.box-area {
    width: 70%;
}

/*------------ Right box ------------*/
/* .right-box {
    padding: 40px 40px 40px 40px;
} */

.logo-cliente {
    width: 130px;

}

/*------------ left box ------------*/
.left-banner-box {
    padding: 10px !important;

}

/*------------ Custom Placeholder ------------*/
::placeholder {
    font-size: 16px;
}

.rounded-4 {
    border-radius: 20px;
}

.rounded-5 {
    border-radius: 30px;
}

.myButton {
    background-color: #0237ff !important;
}

#social {
    position: relative;
}

#social a {
    position: absolute;
    bottom: 20px;
    left: 60px;
    color: #1d75bc;
    font-size: 25px;
    font-weight: 500;
}

#exibeSenha {
    cursor: pointer;
}

#exibeSenha>svg {
    color: #6e6e6e;
}

#exibeSenha:hover {
    opacity: 0.8;
}

/*------------ For small screens------------*/
@media only screen and (max-width: 768px) {
    .box-area {
        margin: 0 20px;
    }

    .alinhamento-countainer {
        align-content: center;
        /* margin-right: 8%;
        margin-top: 10; */
        padding-left: initial;
        padding-right: initial;
        margin-right: 5%;
    }

    .left-box {
        height: 100%;
        overflow: hidden;
    }

    .right-box {
        padding: 20px;
    }

    .logo-cliente {
        width: 170px;
    }

    #social a {
        position: absolute;
        bottom: 7px;
        left: 23px;
        color: #1d75bc;
        font-size: 13px;
        font-weight: 500;
    }

}

/*------------ For tablet screens------------*/
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .box-area {
        margin: 0 20px;
    }


    .alinhamento-countainer {
        align-content: center;
        margin-right: 8%;
        margin-top: 10;
    }

    .left-box {
        height: 100%;
        overflow: hidden;
    }

    .banner-area {
        width: 100%;
    }

    .right-box {
        padding: 20px;
    }

    .formulario-area {
        width: 100%;
    }

    .logo-cliente {
        width: 250px;
    }

    #social a {
        position: absolute;
        bottom: 4%;
        left: 10%;
        color: #1d75bc;
        font-size: 1.5rem;
        font-weight: 500;
    }
}