.component-input-password {
    position: relative !important;
}

.icon-password {
    position: absolute;
    top: 3px;
    right: 3px;
    padding: 12px;
    background-color: white;
    cursor: pointer;
    border-radius: 8px;
    transition: all 1s ease;
}

.icon-eye, .icon-eye-off {
    width: 20px;
    height: 20px;
}

.component-input-password .icon-eye {
    display: block;
}
.component-input-password.open .icon-eye {
    display: none;
}

.component-input-password .icon-eye-off {
    display: none;
}
.component-input-password.open .icon-eye-off {
    display: block;
}
