/* PASSWORD TOOGLE */
.btn--pwdVisiblity {
    position: absolute;
    right: 0;
    border: none;
    top: 2.5em;
    padding: 0.75em 1.15em;
    background: transparent;
    outline: none;
}

.btn--pwdVisiblity svg {
    display: block;
}

.btn--pwdVisiblity::after {
    content: "";
    width: 1px;
    position: absolute;
    top: 30%;
    left: 50%;
    background-color: currentColor;
    height: 40%;
    transform: rotate(-45deg);
}

.btn--pwdVisiblity.pwd-show::after {
    display: none;
}

input[type="password"] {
    padding-right: 3em;
}
