form#login-form {
	text-align: left;
	border-bottom: 1px solid #AAAAAA;
	padding-bottom: 30px;
}
.field {
	margin: 20px 0px;
}
.field-label-container {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: flex-start;
	align-content: flex-start;
	margin-bottom: 5px;
}
input[type="text"], input[type="password"] {
	width: 100%;
	height: 48px;
	border-radius: 8px;
	border: 1px solid #AAAAAA;
	padding: 0px 20px;
}
input[type="submit"] {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	width: 95px;
	height: 48px;
	border: none;
	border-radius: 8px;
	text-align: center;
	background-color: black;
	color: white;
	font-size: 16px;
	font-weight: bold;
}
#reveal-password {
	--size: 30px;
	position: absolute;
	top: 50%;
	right: 10px;
	background: transparent;
	border: none;
	z-index: 1;
	width: var(--size);
	height: var(--size);
	line-height: var(--size);
	cursor: pointer;
	transform: translateY(calc(-1 * var(--size) / 2));
	font-size: 20px;
	text-align: center;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
	vertical-align: middle;
}