.password-toggle-group {
    position: relative;
    width: 100%;
}

.password-toggle-input {
    padding-right: 48px;
}

.password-see {
    position: absolute;
    right: 12px;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    color: #d0177f;
    background-color: transparent;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
}

.password-see:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.password-see svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.password-see .close,
.password-see.show .open {
    display: none;
}

.password-see.show .close,
.password-see .open {
    display: inline-flex;
}