* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;

}

.loginCoorporativo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.loginCoorporativo .logoOantagonista {
    width: 100%;
}

.loginCoorporativo .logoOantagonista img {
    width: 100%;
    margin: 50px 0;
}

.loginCoorporativo .container-login {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 500px;
    border-radius: 8px;
}

.loginCoorporativo .container-login .divTextLogin {
    width: 100%;
}

.loginCoorporativo .container-login .divTextLogin p {
    font-size: 1.3rem;
    font-weight: 700;
    color: #134773;
    text-wrap: nowrap;
}

.loginCoorporativo .container-login .divTextLogin span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    text-wrap: nowrap;
}

.loginCoorporativo .container-login form {
    display: flex;
    flex-direction: column;
    width: 450px;
}


.loginCoorporativo .container-login .box {
    display: flex;
    align-items: center;
    flex-direction: column;
    background-color: #E9EAEC;
    padding: 20px;
    margin: 10px;
    border-radius: 5px;
}

.loginCoorporativo .container-login .box .boxContent {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
}

.loginCoorporativo .container-login .box .labelsForm {
    width: 100%;
    margin-top: 30px;
}


.loginCoorporativo label {
    display: flex;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    flex-wrap: wrap;
    margin-top: 10px;
    margin-bottom: 3px;
}


.loginCoorporativo input {
    padding: 10px;
    border-radius: 5px;
    color: #000;
    border: none;
    width: 100%;
    outline: none;
    height: 50px;
}

.form-group-button {
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 20px;
}

.loginCoorporativo button {
    cursor: pointer;
    padding: 10px;
    border-radius: 50px;
    color: #fff;
    border: none;
    width: 100%;
    background-color: #303B46;
    font-size: 1.1rem;
    font-weight: 700;
}

.loginCoorporativo .container-login .extraLinks {
    display: flex;
    text-align: center;
    flex-direction: column;
    width: 100%;
    margin: 10px 0 0;
}

.loginCoorporativo .container-login .extraLinks span {
    color: #555;
    font-weight: 600;
    text-wrap: nowrap;
    font-size: 0.9rem;
}

.loginCoorporativo .container-login .extraLinks a {
    font-size: 0.9rem;
    margin-top: 10px;
    text-decoration: none;
    color: #134773;
    font-weight: 600;
    text-wrap: nowrap;
}

/* FOOTER PART */
.footer-LP-corp {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 150px;
    background-color: #272727;
    margin-top: 50px;
}

.footer-LP-corp .conteudoFooter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
    height: 100%;
}

.footer-LP-corp .conteudoFooter .logoFrase {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 70%;
}

.footer-LP-corp .conteudoFooter .frase {
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    text-wrap: nowrap;
    margin: 10px 25px;
}

.footer-LP-corp .conteudoFooter .linksFooter {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 30%;
    color: #fff;
}

.footer-LP-corp .conteudoFooter .logoFooter {
    height: 38px;
}

.footer-LP-corp .conteudoFooter .linkAzul {
    font-size: 1.2rem;
    font-weight: 600;
    color: #134773;
    text-wrap: nowrap;
    text-decoration: none;
}

.footer-LP-corp .conteudoFooter .linkLaranja {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ff7f50;
    text-wrap: nowrap;
    text-decoration: none;
}

@media (max-width: 1225px) {
    .footer-LP-corp {
        height: auto;
    }

    .footer-LP-corp .conteudoFooter {
        width: 100%;
        flex-direction: column;
    }

    .footer-LP-corp .conteudoFooter .logoFrase {
        justify-content: center;
        padding: 30px 0 20px 0;
        width: 100%;
    }

    .footer-LP-corp .conteudoFooter .linksFooter {
        padding: 20px 0 30px 0;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-LP-corp .conteudoFooter .logoFrase {
        flex-direction: column;
    }
}

/* END FOOTER PART */

/* QUERIES */

@media (max-width: 480px) {

    .loginCoorporativo .container-login form {
        width: 350px;
    }

    .loginCoorporativo .container-login .divTextLogin p,
    .loginCoorporativo .container-login .divTextLogin span {
        font-size: 1.1rem;
    }

    .loginCoorporativo .container-login .extraLinks span {
        font-size: 0.75rem;
    }
}

/* END QUERIES */