.copy-to-clipboard {
    cursor: pointer;
    transition: transform 0.2s;
}

.copy-to-clipboard.clicked {
    animation: clickEffect 0.3s;
}

@keyframes clickEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/*.bg-colored {*/
/*  background-color: #e6ccff;*/
/*}*/


.password-group {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input {
  padding-right: 40px; /* Space for the icon inside the input */
}

.password-eyed-field-icon {
  position: absolute;
  right: 10px; /* Adjust horizontal position */
  top: 50%;
  transform: translateY(-50%);
  background: url(../images/eye-crossed.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  cursor: pointer;
  z-index: 10; /* Ensure it's always visible */
  display: block;
}

.password-eyed-field-icon--selected {
  background: url(../images/eye-visible.svg) no-repeat center;
  background-size: contain;
}

