.leaflet-div-icon {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.truck-icon.highlight {
  animation: pulse-highlight 1s infinite;
}

@keyframes pulse-highlight {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 0, 0);
  }
}

/*a {
  text-decoration: none !important;
  color: #000 !important;
}
*/

a {
  text-decoration: none !important;
}


.container-signin {
  display: flex;
}

.half-signup,
.half-signin {
  flex: 1;
  height: 100vh;
}

.signin-img {
  background-image: url("/assets/background-login-6487a53e.webp");
  background-repeat: no-repeat;
  background-position: top-left;
  background-size: cover;
}

.password-container {
  position: relative;
}

#togglePassword {
  position: absolute;
  top: 5px; /* Ajuste a distância do ícone do campo de senha */
  right: 10px; /* Alinha o ícone à direita, dentro do container */
  font-size: 18px;
  color: #0F3544; /* Ajuste conforme sua cor preferida */
}

.form-control.input-signin {
  padding-right: 30px; /* Espaço à direita do campo para não sobrepor o ícone */
}

.authentication-wrapper {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    min-height: 100vh;
    width: 100%
}

.authentication-wrapper .authentication-inner {
    width: 100%
}

.authentication-wrapper.authentication-1,
.authentication-wrapper.authentication-2,
.authentication-wrapper.authentication-4 {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center
}

.authentication-wrapper.authentication-1 .authentication-inner {
    max-width: 400px
}

.authentication-wrapper.authentication-2 .authentication-inner {
    max-width: 380px
}

.authentication-wrapper.authentication-3 {
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-pack: stretch;
    justify-content: stretch
}

.authentication-wrapper.authentication-3 .authentication-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: stretch;
    align-items: stretch;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -ms-flex-pack: stretch;
    justify-content: stretch
}

.authentication-wrapper.authentication-4 .authentication-inner {
    max-width: 800px
}

@media all and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
    .authentication-wrapper:after {
        content: '';
        display: block;
        -ms-flex: 0 0 0%;
        flex: 0 0 0%;
        min-height: inherit;
        width: 0;
        font-size: 0
    }
}


@media (max-width: 767.98px) {
  .container-signin {
    flex-direction: column;
  }

  .signin-img {
    display: none;
  }

  .half-signin {
    width: 100%;
    height: auto;
  }

  .authentication-wrapper {
    min-height: auto;
    padding: 40px 20px;
  }

  .authentication-inner {
    max-width: 100%;
  }

  .form-signin {
    width: 100%;
  }
}
