/* Grid, not absolute positioning: checkout.latte inserts the validation
   message right after the input, which would shift a centered button. */
.pw-field {
	display: grid;
	grid-template-columns: 100%;
}
.pw-field > input {
	grid-area: 1 / 1;
	padding-right: 44px !important;
}
.pw-field > .pw-toggle {
	grid-area: 1 / 1;
	justify-self: end;
	align-self: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #7d7d7d;
	font-size: 16px;
	line-height: 1;
	cursor: pointer;
}
.pw-field > .pw-toggle:hover,
.pw-field > .pw-toggle:focus-visible {
	color: #333;
}
