/* =============== 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: 38%;
  height: 100%;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  background-color: #008CA6;
  background-image: url(../../../assets/login/img/logo_hostche.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.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: 435px) {
  .container {
    display: block;
  }

  .container .wrapper {
    width: 100%;
    display: flex;
    box-shadow: none;
    flex-direction: column;
  }

  .container .wrapper .login-img {
    height: 120px;
    width: 100%;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
    background-image: url(../../../assets/login/img/logo_hostche.png);
    background-size: 70%;
  }

  .container .wrapper .login-form {
    width: 100%;
    display: block;
  }

  .container .wrapper .login-form h2 {
    text-align: center;
  }
}

/* =============== 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: 435px) {
  form input[type="submit"], .login-form.resultado a {
    margin-top: -10px;
    float: right;
  }

  .checkbox-area {
    flex-direction: column;
    gap: 0px;
  }

  .checkbox-area .item {
    margin-bottom: 0px !important;
  }
}

/* =============== 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);
}

.checkbox-area {
  color: #333333;
  display: flex;
  gap: 20px;
}

.checkbox-area input {
  position: relative;
  width: 0px;
  margin-right: 20px;
  margin-left: 15px;
}

.checkbox-area input::after {
  content: "";
  height: 18px;
  width: 18px;
  background: transparent;
  position: absolute;
  border: solid 2px #D9D9D9;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 4px;
}

.checkbox-area input:checked::after {
  background: #00709D;
}

.checkbox-area .item {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 14.4px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  transition: background-color 5000s ease-in-out 0s;
}

input[type=checkbox] {
  -moz-appearance: initial;
}

/* =============== 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);
  }
}