fieldset {
	position: relative;
}

.toggle-password {
	box-sizing: border-box;
	border: none;
	border-radius: 0;
	position: absolute;
	z-index: 1;
	cursor: pointer;
	background-color: white;
	top: 4px;
	right: 13px;
	height: 18px;
	width: auto;
	padding: 0;
	font-family: "LFT_Etica_Book", "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", Arial, sans-serif;
	font-size: 14px;
	font-weight: 100;
	text-decoration: underline;
	text-align: right;
	line-height: 0;
	white-space: nowrap;
	color: rgba(0, 0, 0, 0.8);

	display: none;
}

input.filled + .toggle-password {
	display: block;
}

/* Specific rules to overwrite the default button style defined in screen.css */
.toggle-password:active {
	top: 4px;
}

.toggle-password:hover {
	background-color: white;
}

.toggle-password:focus {
	background-color: white;
	outline: 2px solid blue;
}
