.qr-status {
  display: none;
  padding: 2rem;
  border-radius: 100%;
  background-color: #10dba8;
  font-size: 3rem;

  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 99;
  transform: translate(-50%, -50%);
}

.qr-status svg{
  display: flex;
  justify-content: center;
  align-items: center;

  font-size:1.2em;
}

.qr-status.visible {
  animation: visible .8s ease forwards;
  display: block;
}

.qr.paid .image {
  animation: paid 1s ease forwards;
}

@keyframes paid {
  from {
    filter: blur(0);
    opacity: 1;
  }
  to {
    filter: blur(5px);
    opacity: 0.5;
  }
}

@keyframes visible {
  from {
    display: none;
    opacity: 0;
  }
  to {
    display: block;
    opacity: 1;
  }
}

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

input#woocommerce_woocommerce_pdvpix_password {
  padding-right: 40px;
}

input#woocommerce_woocommerce_pdvpix_integration_info_button {
  text-align: center;
}

.toggle-password {
  position: absolute;
  right: 10px; /* Ajuste a posição horizontal do ícone */
  top: 50%;
  transform: translateY(-50%); /* Centraliza verticalmente o ícone */
  border: none;
  background: transparent;
  cursor: pointer;
  color: #666;
  font-size: 16px; 
  z-index: 1; /* Garante que o ícone esteja sobre o campo de entrada */
  padding-right: 0px;
}

@media (min-width: 783px) {
  .password-wrapper{
    width: 400px;
  }
}







