  /*----- CSS TELA DE LOGIN -----*/

  /*----- Fundo -----*/

  .wrapper {
      height: 100vh !important;
      overflow-y: hidden;
  }

  .content-wrapper {
      background-image: url("/assets/BG_completo.webp") !important;
      background-size: 100% 100%;
      background-repeat: no-repeat;
      height: 100vh;
      margin-top: 60px;
      margin: 0 !important;

      @media (min-width: 768px) {
          margin-left: auto !important;

      }
  }

  /*----- Campo-----*/
  * {
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      text-decoration: none;
      list-style-type: none;
      outline: none;

      &:after,
      &::before {
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          box-sizing: border-box;
          margin: 0;
          padding: 0;
          text-decoration: none;
          list-style-type: none;
          outline: none;
      }
  }

  body {
      background-image: url('/assets/BG_completo.webp');
      /*background-position: center;*/
      background-size: 100% 100%;
      background-repeat: no-repeat;
      height: 100vh;
      margin-top: 0px;
      min-height: 100vh;
      /* font-family: 'Roboto', sans-serif;*/
      font-family: 'Nunito', sans-serif;
      overflow: hidden;
  }

  /*----------------------------carrousel --------------------------------*/
  .content-box {
      background-color: transparent;
  }

  .image_c1 {
      object-fit: none;
      width: 850px;
      margin: 7em;
      margin-top: 9em;
      scale: 0.7;

      @media (max-width: 1600px) and (min-width: 1400px) {
          width: 750px;
          margin: 4em;
          margin-top: 3em;
      }

      @media (max-width:1399px) {
          width: 750px;
          margin: 1em;
          margin-top: 0em;
          scale: 0.65;
      }
  }

  .image_c2 {
      width: 1100px;
      object-fit: none;
      margin: 0em;
      scale: 0.65;

      @media (max-width: 1600px) and (min-width: 1400px) {
          width: 1100px;
          margin: -6em;
          margin-top: -6em;
          scale: 0.55;
      }

      @media (max-width:1399px) {
          width: 1100px;
          margin: -9em;
          margin-top: -10em;
          scale: 0.55;
      }
  }

  .image_c3 {
      width: 1300px;
      object-fit: none;
      margin: -6em;
      scale: 0.65;
      margin-top: -7em;

      @media (max-width: 1600px) and (min-width: 1400px) {
          width: 1400px;
          margin: -15.5em;
          margin-top: -16em;
          scale: 0.52;
      }

      @media (max-width:1399px) {
          width: 1400px;
          margin: -18em;
          margin-top: -21em;
          scale: 0.50;
      }
  }

  .image_c4 {
      width: 1300px;
      object-fit: none;
      margin: -9em;
      scale: 0.75;
      margin-top: -5em;

      @media (max-width: 1600px) and (min-width: 1400px) {
          width: 1200px;
          margin: -11em;
          margin-top: -9em;
          scale: 0.60;

      }

      @media (max-width:1399px) {
          width: 1200px;
          margin: -13em;
          margin-top: -13em;
          scale: 0.55;
      }
  }

  .carousel-button-next {
      background-image: url("/assets/Seta-Esquerda.png");
      width: 110px;
      height: 110px;
      background-size: 110px 110px;
      background-color: rgba(0, 0, 0, 0);
      border: none;
      scale: -0.35;
      z-index: 100;
      position: absolute;
      margin-top: 27em;
      margin-left: 59em;
      opacity: 0.75;

      @media (max-width:1600px) and (min-width: 1400px) {
          margin-left: 46em;
          margin-top: 21em;
      }

      @media (max-width:1399px) {
          margin-left: 43em;
          margin-top: 15em;
      }

      &:hover {
          opacity: 1;
      }
  }


  .carousel-button-prev {
      background-image: url("/assets/Seta-Esquerda.png");
      width: 110px;
      height: 110px;
      background-size: 110px 110px;
      background-color: rgba(0, 0, 0, 0);
      border: none;
      scale: 0.35;
      z-index: 100;
      position: absolute;
      margin-top: 27em;
      margin-left: 3em;
      opacity: 0.75;

      @media (max-width:1600px) and (min-width: 1400px) {
          margin-top: 21em;
      }

      @media (max-width:1399px) {
          margin-top: 15em;
          margin-left: -1em;
      }

      &:hover {
          opacity: 1;
      }
  }



  /*----- Campo direito -----*/
  .materialContainer {
      width: 100%;
      max-width: 430px;
      position: absolute;
      top: 50%;
      left: 80%;
      transform: translate(-50%, -50%);
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      z-index: 1000;

      @media (max-width: 1400px) {
          top: 45%;

      }

      @media (max-width: 1100px) {
          max-width: 100vw;
          width: 100vw;
          height: 100vh;
          top: 50%;
          left: 50%;
      }
  }

  /*----- Box Login -----*/

  .box {
      position: relative;
      top: 0;
      opacity: 1;
      float: left;
      padding: 60px 50px 40px 50px;
      width: 100%;
      background: #fff;
      border-radius: 40px;
      transform: scale(1);
      -webkit-transform: scale(1);
      -ms-transform: scale(1);
      z-index: 5;

      &.back {
          transform: scale(0.95);
          -webkit-transform: scale(0.95);
          -ms-transform: scale(0.95);
          top: -20px;
          opacity: .8;
          z-index: -1;
      }

      &:before {
          content: "";
          width: 105%;
          height: 97px;
          border-radius: 170px;
          position: absolute;
          top: -9px;
          background: rgba(255, 255, 255, 0.6);
          left: -9px;
          transform: scale(0.95);
          -webkit-transform: scale(0.95);
          -ms-transform: scale(0.95);
          z-index: -1;

          @media (max-width: 1100px) {
              width: 0px;
          }
      }

      @media (max-width: 1400px) {
          padding: 35px 50px 30px 50px;
          max-height: 460px;
          max-width: 389px;
      }

      @media (max-width: 1100px) {
          max-width: 100vw;
          max-height: 100vh;
          height: 100vh;
      }
  }

  .overbox .title {
      color: #fff;

      &:before {
          background: #fff;
      }
  }

  .overbox .input {
      .spin {
          background: rgba(255, 255, 255, 1);
      }

      &:before {
          background: rgba(255, 255, 255, 0.5);
      }

      &.i-version {
          &:before {
              background: none;
          }
      }
  }

  .overbox {
      width: 100%;
      height: 93%;
      position: absolute;
      top: 0;
      left: 0;
      overflow: inherit;
      border-radius: 40px;
      padding: 60px 50px 40px 50px;
      display: flex;
      flex-direction: column;

      @media (max-width: 1400px) {
          padding: 35px 50px 30px 50px;
          max-height: 460px;
          max-width: 390px;
          min-height: 430px;
      }

      @media (max-width: 1100px) {
          max-height: 100vh;
          max-width: 100vw;
          height: 100vh;

      }

      .title,
      .button,
      .input {
          z-index: 111;
          position: relative;
          color: #fff !important;
          display: none;
      }

      .title {
          width: 80%;
      }

      .input {
          margin-top: 20px;

          input,
          label {
              color: #fff;
          }
      }

      .material-button,
      .alt-2 {
          display: block;

          .shape {
              display: block;
          }
      }
  }

  /*----- Circulo Contato -----*/

  .material-button,
  .alt-2 {
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background-color: #42E8E0;
      position: absolute;
      top: 40px;
      right: -60px;
      cursor: pointer;
      z-index: 100;
      transform: translate(0%, 0%);
      -webkit-transform: translate(0%, 0%);
      -ms-transform: translate(0%, 0%);
      /*background-image: url("Login/Botao-Menu.png") !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; */

  }

  .imgContato {
      width: 80px;
      height: 80px;
      top: 30px;
      position: relative;
      z-index: 1000;
      right: -20%;
      display: '';
  }

  .material-button .shape,
  .alt-2 .shape {
      position: absolute;
      top: 0;
      right: 0;
      width: 100%;
      height: 100%;
      margin-right: 10px;
  }

  .material-button .shape:before,
  .alt-2 .shape:before,
  .material-button .shape:after,
  .alt-2 .shape:after {
      content: "";
      background: #fff;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(360deg);
      -webkit-transform: translate(-50%, -50%) rotate(360deg);
      -ms-transform: translate(-50%, -50%) rotate(360deg);
  }

  .material-button .shape:before,
  .alt-2 .shape:before {
      width: 25px;
      height: 4px;
  }

  .material-button .shape:after,
  .alt-2 .shape:after {
      height: 25px;
      width: 4px;
  }

  .material-button.active,
  .alt-2.active {
      top: 50%;
      right: 50%;
      transform: translate(50%, -50%) rotate(0deg);
      -webkit-transform: translate(50%, -50%) rotate(0deg);
      -ms-transform: translate(50%, -50%) rotate(0deg);

      @media (max-width: 1100px) {
          width: 100vw !important;
          height: 100vh !important;
          border-radius: 0px;
          max-height: 100vh;
      }

      .imgContato {
          display: none;
      }

      .shape {
          @media (max-width: 1100px) {
              top: -15%;
              right: -15%;
          }

      }
  }

  .title {
      width: 100%;
      float: left;
      line-height: 46px;
      font-size: 34px;
      font-weight: 700;
      letter-spacing: 2px;
      color: #002F6F;
      position: relative;

      &:before {
          content: "";
          width: 5px;
          height: 100%;
          position: absolute;
          top: 0;
          left: -50px;
          background: #002F6F;
      }
  }

  .corTexto {
      color: #002F6F;
  }

  .inputText {

      @media (max-width: 1400px) {
          font-size: 16px;
      }
  }

  .input {
      width: 100%;
      float: left;

      label,
      input,
      .spin {
          width: 100%;
          float: left;
      }

      @media (max-width: 1100px) {
          width: 51%;
          min-width: 250px;
          float: right;
          margin-right: 25%;
      }

      @media (max-width: 600px) {
          width: 100%;
          min-width: 250px;
          margin-right: 0%;
          float: none;
      }
  }

  .input,
  .button {
      margin-top: 30px;
      height: 70px;
  }

  .input {
      position: relative;

      input {
          position: relative;
      }
  }

  .input {

      &:before,
      .spin {
          width: 100%;
          height: 1px;
          position: absolute;
          bottom: 0;
          left: 0;
      }

      &:before {
          content: "";
          background: rgba(0, 0, 0, 0.1);
          z-index: 3;
      }

      .spin {
          background: #1041A1;
          z-index: 4;
          width: 0;
      }
  }

  .input label {
      position: absolute;
      top: 10px;
      left: 0;
      z-index: 2;
      cursor: pointer;
      line-height: 60px;
  }

  .input {
      transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
      -webkit-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
      -ms-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);

      label,
      input,
      .spin {
          transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
          -webkit-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
          -ms-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
      }
  }


  .input {
      input {
          height: 60px;
          top: 10px;
          border: none;
          background: transparent;
          /* font-family: 'Roboto', sans-serif;*/
          font-family: 'Nunito', sans-serif;
          font-size: 24px;
          color: rgba(0, 0, 0, 0.8);
          font-weight: 300;

          @media (max-width: 1400px) {
              font-size: 22px;
          }

      }

      label {
          /* font-family: 'Roboto', sans-serif;*/
          font-family: 'Nunito', sans-serif;
          font-size: 24px;
          color: rgba(255, 255, 255, 0.8);
          font-weight: 300;

          @media (max-width: 1400px) {
              font-size: 22px;
          }
      }
  }

  /*----- Box Login -----*/


  .button {
      transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
      -webkit-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
      -ms-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);

      button .button.login button i.fa {
          transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
          -webkit-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
          -ms-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
      }
  }

  .material-button .shape {

      &:before,
      &:after {
          transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
          -webkit-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
          -ms-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
      }
  }

  .button.login button {
      color: #fff;
      transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
      -webkit-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
      -ms-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }


  .material-button,
  .alt-2,
  .material-button .shape,
  .alt-2 .shape,
  .box {
      transition: 400ms cubic-bezier(0.4, 0, 0.2, 1);
      -webkit-transition: 400ms cubic-bezier(0.4, 0, 0.2, 1);
      -ms-transition: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  }



  .button {
      position: relative;
      width: 100%;
      float: left;

      button {
          position: relative;
          width: 100%;
          float: left;
      }
  }

  .button button {
      /* font-family: 'Roboto', sans-serif;*/
      font-family: 'Nunito', sans-serif;
      font-size: 24px;
      color: rgba(0, 0, 0, 0.8);
      font-weight: 300;
  }




  .button {
      transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
      -webkit-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
      -ms-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);

      button .button.login button i.fa {
          transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
          -webkit-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
          -ms-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
      }
  }

  .material-button .shape {

      &:before,
      &:after {
          transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
          -webkit-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
          -ms-transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
      }
  }


  .material-button,
  .alt-2,
  .material-button .shape,
  .alt-2 .shape,
  .box {
      transition: 400ms cubic-bezier(0.4, 0, 0.2, 1);
      -webkit-transition: 400ms cubic-bezier(0.4, 0, 0.2, 1);
      -ms-transition: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  }


  .button {
      width: 100%;
      float: left;

      button {
          width: 100%;
          float: left;
      }
  }


  .button {
      position: relative;

      button {
          position: relative;
      }
  }


  .button button {
      /* font-family: 'Roboto', sans-serif;*/
      font-family: 'Nunito', sans-serif;
      font-size: 24px;
      color: rgba(0, 0, 0, 0.8);
      font-weight: 300;
  }


  .button {

      margin-top: 20px;

      &.login {

          margin: 55px 0 20px 0;
          width: 60%;
          left: 20%;
          height: 75px;

          button {
              width: 100%;
              line-height: 45px;
              left: 0%;
              background-color: #307DFF;
              color: #fff;
              border: 3px solid #307DFF;
              font-weight: 900;
              font-size: 18px;
              border-radius: 13px;

              &:hover {
                  color: #fff;
                  background-color: #3062dd;
                  opacity: 100%;
              }

              @media (max-width: 1400px) {
                  line-height: 28px;
              }
          }

          @media (max-width: 1400px) {
              margin-top: 25px;
              margin-bottom: 20px;
              height: 45px;
          }
      }

      button {
          color: #fff;
          border: none;
      }

      &.login button {
          i.fa {
              width: 100%;
              height: 100%;
              position: absolute;
              top: 0;
              left: 0;
              line-height: 60px;
              transform: scale(0) rotate(-45deg);
              -webkit-transform: scale(0) rotate(-45deg);
              -ms-transform: scale(0) rotate(-45deg);


          }


      }

      margin: 40px 0;
      overflow: hidden;
      z-index: 2;

      button {
          cursor: pointer;
          position: relative;
          z-index: 2;
      }
  }

  .pass-forgot {
      width: 100%;
      text-align: center;
      color: rgba(0, 0, 0, 0.4);
      font-size: 16px !important;
      position: relative;
      top: 20px;
      right: 10px;
  }

  .input-version {}


  html {
      overflow: hidden;
  }


  /*------------------------------------------------------------------
  [ Alert validate ]*/

  .validate-input {
      position: relative;
  }

  .alert-validate::before {
      content: attr(data-validate);
      position: absolute;
      max-width: 70%;
      background-color: #fff;
      border: 1px solid #c80000;
      border-radius: 3px;
      padding: 4px 25px 5px 10px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      right: 12px;
      pointer-events: none;

      font-family: Ubuntu-Regular;
      color: #c80000;
      font-size: 14px;
      line-height: 1.4;
      text-align: left;

      visibility: hidden;
      opacity: 0;

      -webkit-transition: opacity 0.4s;
      -o-transition: opacity 0.4s;
      -moz-transition: opacity 0.4s;
      transition: opacity 0.4s;
  }

  .alert-validate::after {
      content: "\f12a";
      font-family: FontAwesome;
      display: block;
      position: absolute;
      color: #c80000;
      font-size: 18px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      right: 18px;
  }

  .alert-validate:hover:before {
      visibility: visible;
      opacity: 1;
  }

  @media (max-width: 992px) {
      .alert-validate::before {
          visibility: visible;
          opacity: 1;
      }
  }

  /*------------------------------------------------------------------
  [ Input ]*/



  /*---------------------------------------------*/
  .input100 {
      font-family: Ubuntu-Bold;
      color: #403866;

      font-size: 18px;

      display: block;
      width: 100%;
      background: transparent;
      height: 62px;
      padding: 0 20px 0 38px;
  }

  /*----------------------------titulo tela login --------------------------------*/

  #login{
    color: #fff;
  }
  .titleLogin {
      width: auto;
      display: flex;
      left: 35%;
      line-height: 90px;
      font-size: 34px;
      font-weight: 700;
      letter-spacing: 2px;
      position: relative;
      color: transparent;
      transition: all 0.5s ease;
      user-select: none;
      z-index: 101;


      &:before {
          content: "";
          width: 5px;
          height: 100%;
          position: absolute;
          top: 0;
          left: -50px;
          background: #fff !important;
      }

      @media (max-width: 1400px) {
          width: 80px !important;
          height: 80px !important;
          left: 30%;
      }

      @media (max-width: 1100px) {
          left: 42%;
      }

      @media (max-width: 450px) {
          left: 30%;
      }
  }

  .box:hover div .titleIcon {
      color: #1041A1;
      opacity: 0;
      transform: translateX(-110px) scale(0.8);

      @media (max-width: 1400px) {
          transform: translateX(-80px) scale(0.8);
      }

      @media (max-width: 1100px) {
          transform: translateX(0px) scale(1);
      }

  }

  .titleIcon {
      width: 70px !important;
      height: 70px !important;
      /*! margin: 0px 20px; */
      opacity: 1;
      transition: all 0.4s ease;


      @media (max-width: 1100px) {
          position: relative;
          opacity: 0;
      }

      /*! left: 7%; */
      /*! margin-left: 70px; */
      position: absolute;
  }



  .logTitle {
      /*! margin: 13px 0 0 8px; */
      position: relative;
      /*! right: 100px; */
      opacity: 0;
      transition: all 0.35s ease;
      /*! top: 5%; */
      /*! left: 40%; */
      position: absolute;
  }


  .box:hover .titlelogin .logTitle {
      transform: translateX(-40%) scale(0.85);
      position: absolute;
      /*! top: 13.4%; */
      /*! left: 47.75%; */
      opacity: 1;


  }

  .toggle-icon {
      position: relative;
      top: -35%;
      float: right;
      font-size: 25px;
      cursor: pointer;
      opacity: 0.5;
  }

  @import url('https://fonts.googleapis.com/css?family=Nunito:400,500,600,700&display=swap');

  * {
      margin: 0;
      padding: 0;
      outline: none;
      box-sizing: border-box;
      font-family: 'Nunito', sans-serif;
  }



  .input-container {
      position: relative;
      margin-bottom: 25px;
  }

  .input-container label {
      position: absolute;
      top: 0px;
      left: 30px;
      font-size: 22px;
      color: #000000;
      pointer-event: none;
      transition: all 0.5s ease-in-out;
  }

  .input-container input {
      border: 0;
      border-bottom: 2px solid #EFEFEF;
      background: transparent;
      width: 100%;
      padding: 20px 0 5px 0;
      font-size: 16px;
      color: #000000;
  }


  .h4,
  h4 {
      font-size: 18px !important;
  }



  .input-container input:focus {
      border: none;
      outline: none;
      border-bottom: 1px solid #6482BE;
  }

  .icone1 {
      margin-top: 0px;
      position: absolute;
      font-size: "1.7em";
  }

  .icone2 {
      margin-top: 0px;
      position: absolute;
      font-size: "1.65em";
  }

  .input-container input:focus~label,
  .input-container input:valid~label {
      top: -12px;
      font-size: 16px;

  }


  #togglePassword {
      position: absolute;
      margin-left: 16.1rem;
      margin-top: 1.2rem;
      cursor: pointer;
      z-index: 999;

      @media (min-width:1700px) {
          margin-left: 18rem
      }
  }

  .input-container input {
      cursor: pointer;
  }

  .input-container label {
      z-index: -1;
  }