/* =============== ESTRUTURA GERAL =============== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none;
    font: unset;
    background: unset;
    color: unset;
    outline: none;
}

strong {
    font-weight: bold;
}

@media (max-width: 425px) {
    .g-recaptcha {
        transform: scale(0.6);
        -webkit-transform: scale(0.6);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}

html, body, .container {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: 'Open Sans', sans-serif;
}

.clear {
    clear: both;
}

.left {
    float: left;
}

.right {
    float: right;
}

.col {
    float: left;
    padding: 0 10px;
    box-sizing: border-box;
}

.col-1 {
    width: 8.33%;
}

.col-2 {
    width: 16.66%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33%;
}

.col-5 {
    width: 41.66%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33%;
}

.col-8 {
    width: 66.66%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33%;
}

.col-11 {
    width: 91.66%;
}

.col-12 {
    width: 100%;
}

@media (max-width: 1200px) {
    .col-md-1 {
        width: 6.86666666667%;
    }
    .col-md-2 {
        width: 15.3333333333%;
    }
    .col-md-3 {
        width: 23.8%;
    }
    .col-md-4 {
        width: 32.2666666667%;
    }
    .col-md-5 {
        width: 40.7333333333%;
    }
    .col-md-6 {
        width: 49.2%;
    }
    .col-md-7 {
        width: 57.6666666667%;
    }
    .col-md-8 {
        width: 66.1333333333%;
    }
    .col-md-9 {
        width: 74.6%;
    }
    .col-md-10 {
        width: 83.0666666667%;
    }
    .col-md-11 {
        width: 91.5333333333%;
    }
    .col-md-12 {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .col-sm-1 {
        width: 6.86666666667%;
    }
    .col-sm-2 {
        width: 15.3333333333%;
    }
    .col-sm-3 {
        width: 23.8%;
    }
    .col-sm-4 {
        width: 32.2666666667%;
    }
    .col-sm-5 {
        width: 40.7333333333%;
    }
    .col-sm-6 {
        width: 49.2%;
    }
    .col-sm-7 {
        width: 57.6666666667%;
    }
    .col-sm-8 {
        width: 66.1333333333%;
    }
    .col-sm-9 {
        width: 74.6%;
    }
    .col-sm-10 {
        width: 83.0666666667%;
    }
    .col-sm-11 {
        width: 91.5333333333%;
    }
    .col-sm-12 {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .col-xsm-1 {
        width: 6.86666666667%;
    }
    .col-xsm-2 {
        width: 15.3333333333%;
    }
    .col-xsm-3 {
        width: 23.8%;
    }
    .col-xsm-4 {
        width: 32.2666666667%;
    }
    .col-xsm-5 {
        width: 40.7333333333%;
    }
    .col-xsm-6 {
        width: 49.2%;
    }
    .col-xsm-7 {
        width: 57.6666666667%;
    }
    .col-xsm-8 {
        width: 66.1333333333%;
    }
    .col-xsm-9 {
        width: 74.6%;
    }
    .col-xsm-10 {
        width: 83.0666666667%;
    }
    .col-xsm-11 {
        width: 91.5333333333%;
    }
    .col-xsm-12 {
        width: 100%;
    }
}

.center {
    width: 95%;
    max-width: 1200px;
    min-width: 320px;
    margin: 0 auto;
    height: auto;
    display: block;
    position: relative;
}

/* =============== ALERTA =============== */

.alerta {
    width: auto;
    max-width: 85%;
    font-weight: bold;
    padding: 10px;
    display: table;
    margin: 0 auto;
    margin-top: 35px;
    margin-bottom: 20px;
}

.alerta.sucesso {
    color: #ffffff;
    background: #35ad5d;
}

.alerta.erro {
    color: #ffffff;
    background: #dc4747;
}

.alerta.neutro {
    color: #ffffff;
    background: #e2b54a;
}

.alerta span {
    width: 90%;
    white-space: pre-line;
    display: table-cell;
    vertical-align: middle;
    padding-right: 30px;
}

.alerta i {
    width: 10%;
    display: table-cell;
    text-align: right;
    vertical-align: middle;
}

/* =============== LOGIN =============== */

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FBFCFC;
}

.container .wrapper {
    width: 700px;
    display: table;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.2);
}

.container .wrapper .login-img, .container .wrapper .login-form {
    display: table-cell;
    vertical-align: middle;
}

.container .wrapper .login-img {
    width: 35%;
    height: 100%;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    background: url(../../../assets/login/img/background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
}

.container .wrapper .login-form {
    width: 65%;
    padding: 17px 25px;
}

.container .wrapper .login-form.resultado {
    text-align: center;
}

.container .wrapper .login-form.resultado img.face {
    max-width: 175px;
    max-height: 300px;
    margin-bottom: 15px;
}

.container .wrapper .login-form.resultado p {
    margin: 5px;
}

.container .wrapper .login-form h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 300;
    color: #545F61;
}

/* =============== LOGIN MEDIA =============== */

@media (max-width: 768px) {
    .container {
        padding-top: 20px;
        display: block;
    }
    .container .wrapper {
        width: 90%;
        min-width: unset;
        max-width: unset;
        display: block;
        margin: auto;
    }
    .container .wrapper .login-img {
        display: none;
    }
    .container .wrapper .login-form {
        width: 100%;
        display: block;
    }
}

/* =============== FORMULÁRIO =============== */

* ::placeholder {
    font-size: 0.9em;
    color: #333333;
    transition: all .5s ease;
}

form::after {
    content: '';
    clear: both;
    display: table;
}

form .input-form {
    width: 100%;
    display: block;
    margin: 15px 0;
    padding: 10px;
    background: #F5F5F5;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    font-size: 0.9em;
    color: #333333;
    transition: all .3s ease;
}

form .input-form.error {
    border: 1px solid #e03d3d;
}

div.nivel-senha {
    width: 100%;
    height: 5px;
    margin-top: -12px;
}

div.nivel-senha div.nivel {
    width: calc(25% - 3px);
    height: 100%;
    float: left;
    margin: 0 1.5px;
    background: #e4e4e4;
}

div.nivel-senha div.nivel:first-of-type {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

div.nivel-senha div.nivel:last-of-type {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

div.nivel-senha.fraca div.nivel:nth-of-type(1) {
    background: #E13A58;
}

div.nivel-senha.media div.nivel:nth-of-type(1), div.nivel-senha.media div.nivel:nth-of-type(2) {
    background: #FDA006;
}

div.nivel-senha.boa div.nivel:nth-of-type(1), div.nivel-senha.boa div.nivel:nth-of-type(2), div.nivel-senha.boa div.nivel:nth-of-type(3) {
    background: #3DA5F4;
}

div.nivel-senha.forte div.nivel:nth-of-type(1), div.nivel-senha.forte div.nivel:nth-of-type(2), div.nivel-senha.forte div.nivel:nth-of-type(3), div.nivel-senha.forte div.nivel:nth-of-type(4) {
    background: #44b6ae;
}

form .helper {
    display: none;
    margin-top: -15px;
    font-size: 0.7em;
    font-weight: 300;
    color: #e03d3d;
}

form .helper.login {
    margin-top: 10px;
}

form .helper.visible {
    display: block;
}

form input[type="submit"], .login-form.resultado a, .login-form a.voltar {
    display: block;
    height: 44px;
    margin-top: 20px;
    padding: 10px 20px;
    background: #349849;
    border: 1px solid #349849;
    font-size: 1em;
    color: #ffffff;
    cursor: pointer;
    text-decoration: none;
    transition: all .3s ease-in-out;
}

.login-form a.voltar {
    background: #9c9c9c;
    border: 1px solid #9c9c9c;
}

div.link {
    margin-bottom: 15px;
    text-align: right;
}

div.link a {
    font-size: 12px;
    display: inline-block;
    color: inherit;
    list-style-type: none;
    outline: none;
}

/* =============== FORMULÁRIO HOVER EFFECTS =============== */

form input[type="submit"]:hover, .login-form.resultado a:hover {
    background: #ffffff;
    color: #349849;
}

.login-form a.voltar:hover {
    background: #ffffff;
    color: #9c9c9c;
}

/* =============== FORMULÁRIO MEDIA =============== */

@media (max-width: 425px) {
    form input[type="submit"], .login-form.resultado a {
        margin-top: -10px;
    }
}

/* =============== ALERTA =============== */

.alerta {
    width: 40%;
    min-width: 320px;
    max-width: 85%;
    padding: 15px;
    display: table;
    position: absolute;
    top: 20px;
    right: 20px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translate(0, -100px);
    overflow: hidden;
    z-index: 1;
    transition: all .8s ease-in-out;
}

.alerta.sucesso {
    background: #44b6ae;
}

.alerta.erro {
    background: #E13A58;
}

.alerta.info {
    background: #e7a539;
}

.alerta.active {
    animation: fade-in .8s ease-in-out forwards;
}

.alerta.inactive {
    animation: fade-out .8s ease-in-out forwards;
}

.alerta .timer {
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    border-top: 3px solid rgba(255, 255, 255, 0.6);
}

.alerta.active .timer {
    animation: timer 5s linear;
}

.alerta:hover .timer {
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

.alerta>i {
    width: 35px;
    display: table-cell;
    font-size: 2.6em;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    transition: transform 1s ease-in-out .3s;
}

.alerta.active>i {
    transform: scale(1);
}

.alerta .text {
    display: table-cell;
    vertical-align: middle;
    padding: 0 20px 0 15px;
}

.alerta .text h2 {
    font-size: 1.2em;
    font-weight: 400;
    color: #ffffff;
    text-transform: capitalize;
    opacity: 0;
    transform: translate(50px, 0);
    transition: opacity 0.5s, transform .8s ease-in-out .3s;
}

.alerta.active .text h2 {
    opacity: 1;
    transform: translate(0, 0);
}

.alerta .text h3 {
    font-size: 0.9em;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    text-transform: lowercase;
    opacity: 0;
    transform: translate(100px, 0);
    transition: opacity 0.5s, transform .8s ease-in-out .5s;
}

.alerta.active .text h3 {
    opacity: 1;
    transform: translate(0, 0);
}

.alerta .close {
    width: 20px;
    display: table-cell;
    vertical-align: middle;
    text-align: right;
}

.alerta .close i {
    font-size: 1.6em;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.alerta .close i:before {
    transition: all .5s ease-in-out;
}

.alerta .close i:hover:before {
    transform: rotate(-180deg);
    color: #ffffff;
}

.alerta::after {
    width: 100%;
    height: 3px;
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.2);
}

/* =============== ANIMAÇÕES =============== */

@keyframes timer {
    from {
        width: 100%;
    }
    to {
        width: 0;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
        visibility: hidden;
        transform: translate(0, -100px);
    }
    to {
        opacity: 1;
        visibility: visible;
        transform: translate(0, 0);
    }
}

@keyframes fade-out {
    from {
        opacity: 1;
        visibility: visible;
        transform: translate(0, 0);
    }
    to {
        opacity: 0;
        visibility: hidden;
        transform: translate(0, -100px);
    }
}

* h1, label {
  font-family: "Open Sans", sans-serif;
}

.container_divs {
  background: #fff;
  display: flex;
  min-height: 100vh;
  display: flex;
}

#efeito {
  width: 85%;
  display: flex;
  flex-direction: column;
  /* height: 100vh; */
}

.esquerda {
  max-width: 40rem;
  width: 100%;
  position: relative;
 
  display: flex;
  flex-direction: column;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 77% 100%, 0% 100%);
}

.img_esquerda {
  min-height: 32.125rem;
  margin: auto 0;
  min-width: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: relative !important;
  z-index: 1;
}

.esquerda-topo {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
  /* height: 30%; */
  gap: 20px;
}

.esquerda-topo h1 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6;
}

.esquerda-topo img {
  width: 284px;
}

.esquerda-bottom {
  /* height: 70%; */
  display: flex;
  flex-direction: column;
}

.move-1 {
  position: absolute;
  top: 0;
  right: 0;
  width: 125px;
  border-radius: 0.375rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.esquerda .img1 {
  width: 82px;
  position: absolute;
  top: 0;
  right: 0;
  width: 125px;
  border-radius: 0.375rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.esquerda .img2 {
  width: 100px;
  left: 21px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 35px;
  width: 150px;
  border-radius: 0.375rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.esquerda .img3 {
  width: 82px;
  position: absolute;
  border-radius: 0.375rem;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  width: 150px;
  right: 32px;
  bottom: 19px;
}

canvas {
  display: block;
  vertical-align: bottom;
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
}

.move-1 {
  -webkit-animation: move1 5s infinite;
  animation: move1 5s infinite;
}

.move-2 {
  -webkit-animation: move2 5s infinite;
  animation: move2 5s infinite;
}

.move-3 {
  -webkit-animation: move3 5s infinite;
  animation: move3 5s infinite;
}


@-webkit-keyframes move1 {
  0% {
    -webkit-transform: rotate(-1deg) translate(-2px, -2px);
    transform: rotate(-1deg) translate(-2px, -2px);
  }

  50% {
    -webkit-transform: rotate(1deg) translate(2px, 2px);
    transform: rotate(1deg) translate(2px, 2px);
  }

  100% {
    -webkit-transform: rotate(-1deg) translate(-2px, -2px);
    transform: rotate(-1deg) translate(-2px, -2px);
  }
}

@keyframes move1 {
  0% {
    -webkit-transform: rotate(-1deg) translate(-2px, -2px);
    transform: rotate(-1deg) translate(-2px, -2px);
  }

  50% {
    -webkit-transform: rotate(1deg) translate(2px, 2px);
    transform: rotate(1deg) translate(2px, 2px);
  }

  100% {
    -webkit-transform: rotate(-1deg) translate(-2px, -2px);
    transform: rotate(-1deg) translate(-2px, -2px);
  }
}

@-webkit-keyframes move2 {
  0% {
    -webkit-transform: rotate(1deg) translate(2px, 2px);
    transform: rotate(1deg) translate(2px, 2px);
  }

  50% {
    -webkit-transform: rotate(-1deg) translate(-2px, -2px);
    transform: rotate(-1deg) translate(-2px, -2px);
  }

  100% {
    -webkit-transform: rotate(1deg) translate(2px, 2px);
    transform: rotate(1deg) translate(2px, 2px);
  }
}

@-webkit-keyframes move3 {
  0% {
    transform: translate(0, 0);
  }

  20% {
    transform: translate(5px, 0);
  }

  40% {
    transform: translate(5px, 5px);
  }

  65% {
    transform: translate(0, 5px);
  }

  65% {
    transform: translate(5px, 0);
  }

  100% {
    transform: translate(0, 0);
  }
}

.direita {
  display: flex;
  flex: 1 auto;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
  justify-content: center;
}

.login_container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.login_body {
  background: transparent;
  box-shadow: none;
  max-width: 35.125rem;
  width: 100%;
  padding: 3.125rem 3.125rem;
}

.topo_login {
  margin-bottom: 30px;
}

.topo_login h1 {
  font-size: 1.5em;
  font-family: "Open Sans", sans-serif;
  color: #333333;
  text-align: center;
  font-weight: 600;
  margin-bottom: 8px;
}

.topo_login p {
  font-size: 0.9em;
  font-family: "Open Sans", sans-serif;
  color: #79777d;
  font-weight: 600;
  text-align: center;
}

.container_login label {
  font-family: "Open Sans", sans-serif;
  font-size: 1.0em;
  /* font-size: 0.8125rem !important; */
  line-height: 1.5;
  color: #333333;
  font-weight: 600;
}

.container_login input {
  background: #fff;
  color: #303972;
  line-height: 1.7;
  font-size: 0.9rem;
  height: 3rem;
  border-radius: 0.375rem;
  border-color: #dddddd;
}

.container_login input:focus {
  border-color: #009eafe3;
}

.container_login .link a {
  text-decoration: none;
  font-size: 0.9em;
  font-family: "Open Sans", sans-serif;

  text-align: center;
  /* font-weight: 600; */
}

.container_login .criar_conta p {
  font-size: 0.9em;
  color: #79777d;
  font-weight: 600;
  margin-top: 10px;
}

.container_login .criar_conta a {
  text-decoration: none !important;
  text-decoration: none;
  font-size: 0.9em;
  font-family: "Open Sans", sans-serif;
  color: #3F62AE;
  text-align: center;
  font-weight: 600;
}

.container_login .botao_submit {
  /* background: #3F62AE !important; */
  border: none;
  transition: 0.3s;
  width: 100% !important;
}

.container_login .botao_submit:hover {
  background: #00b090 !important;
  color: #fff !important;
}

.senha_login {
  position: relative;
}

.senha_login i {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  cursor: pointer;
  color: #3F62AE;
}

.senha_login input[type="password"] {
  padding-right: 30px;
  /* Adicione espaço para o ícone */
}

@media(min-width: 1660px) {
  .esquerda {
    max-width: 47%;
  }

  .img_esquerda {
    margin: 0;
  }

  .esquerda .img1 {
    right: 107px;
    top: -71px;
  }

  .esquerda .img2 {
    left: 72px;
    top: 54%;
  }

  .esquerda .img3 {
    right: 76px;
  }

  #efeito {
    gap: 110px;
  }

}


@media(min-width: 1920px) {
  .esquerda {
    max-width: 50%;
  }

  .img_esquerda {
    margin: 0;
  }

  .esquerda .img1 {
    right: 107px;
    top: -71px;
  }

  .esquerda .img2 {
    left: 113px;
    top: 54%;
  }

  .esquerda .img3 {
    right: 110px;
  }

  #efeito {
    gap: 110px;
  }

}

@media(max-width: 1550px) {
  .esquerda {
    max-width: 43rem;
  }

  #efeito {
    width: 80%;
  }

  .login_body {
    max-width: 29.125rem;
  }
}



@media(max-width: 1024px) {
  .container_divs {
    flex-direction: column;
  }

  .esquerda {
    width: 100%;
    max-width: 100%;
    clip-path: none;
    align-items: center;
    height: 240px;
  }
  .esquerda img{
    width: 200px;
    margin-top: 20px;
  }
  .esquerda h1{
    font-size: 1.2em;
  }

  .img_esquerda {
    display: none;
  }

  .esquerda-topo {
    height: 100%;
    justify-content: center;
  }

  .esquerda-bottom {
    display: none;
  }

  .direita {
    flex: none;
  }

}