@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

* {
	background-color: #EAE9EA;
	font-family: 'Open Sans', sans-serif;
}

#login {
	width: 60%;
	padding: 1%;
	margin: 15vh 19% 0 19%;
	background-color: white;
	box-shadow: 10px 5px 5px #BCBCBC;
	border-radius: 10px;
}

#logo {
	width: 50%;
	margin: 5% 25%;
}

input[type=email], input[type=password] {
	display: block;
	width: 50%;
	margin-left: 25%;
	margin-right: 25%;
	border: thin grey solid;
	background-color: white;
	padding: 1%;
	border-radius: 10px;
	margin-bottom: 3vh;
	color: #0076BF;
	font-size: 15px;
	font-weight: 600;
}

#login_error {
	display: none;
	width: 72%;
	margin-left: 13%;
	margin-right: 13%;
	margin-bottom: 3vh;
	padding: 1%;
	background-color: #ffdce0;
	color: #ff1c36;
	font-weight: 600;
	font-size: 15px;
	border: solid thin #ffadb6;
	border-radius: 10px;
	text-align: center;
}

input[type=submit] {
	display: block;
	width: 15%;
	margin-left: 42.5%;
	margin-right: 42.5%;
	border: thin grey solid;
	background-color: white;
	padding: 0.5%;
	margin-bottom: 5vh;
	color: #0076BF;
	text-transform: uppercase;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
}

input[type=submit]:hover {
	background-color: #EAE9EA;
	color: black;
	transition: 200ms all;
}
