span#toggle-password {
	float: right;
	margin-right: 1rem;
	margin-top: -4rem;
	position: relative;
	z-index: 1;
	font-size: 2rem;
	background: none;
	border: none;
	cursor: pointer;
}
button#sign-in {
	width: 96%;
	font-weight: bold;
}
button#toggle-password:focus {
	outline: none; 
}


span#password-constraints {
	font-size: 1.5rem;
}
/*
div#password-constraints {
	margin: 1rem 0 0 0;
	font-size: 1.5rem;
}
*/

input, input[type=text] {
	border: 0.1rem solid #000000;
	font-size: 2rem;
	padding: 1rem;
	width: 93%;
	background-color: white;
}
label {
	display: block;
	font-size: inherit;
	margin: 0 0 1rem 0;
	font-size: 2rem;
}
input[type=email]:not(:focus):invalid,
input[type=password]:not(:focus):invalid {
	color: red;
	outline-color: red;
}
article {
	width: 30%;
}
@media (max-width: 1440px) {
	article {
		width: 40%;
	}
	input, input[type=text] {
		width: 94%;
	}
}
@media (max-width: 1024px) {
	article {
		width: 50%;
	}
	input, input[type=text] {
		width: 95%;
	}
}
@media (max-width: 768px) {
	article {
		width: 60%;
	}
	input, input[type=text] {
		width: 95%;
	}
}
@media (max-width: 425px) {
	article {
		width: 70%;
	}
	input, input[type=text] {
		width: 94%;
	}
}
@media (max-width: 320px) {
	article {
		width: 80%;
	}
	input, input[type=text] {
		width: 92%;
	}
}