div[data-password-box=password-box] {

    display: inline-grid;
    grid-template-columns: 1fr auto;

    & > input {
        grid-row: 1;
        grid-column: 1 / span 2;

        &::-ms-reveal {
            display: none;
        }
    }

    & > i {
        grid-row: 1;
        grid-column: 2;
        align-self: center;
        justify-self: center;
        z-index: 2;
        padding: 5px;
    }
}