.password-input {
    position: relative;

    input {
        width: 100%;
    }

    button.visibility-toggle {
        position: absolute;
        right: 0;
        bottom: 50%;
        transform: translate(-25%, 50%);

        width: 1.5rem;
        height: 1.5rem;

        background: transparent;
        padding: 0;
        border: none;
    }

    .hide-password {
        display: none;
    }

    &.visible {
        .show-password {
            display: none;
        }

        .hide-password {
            display: block;
        }
    }
}