#cancel-button {
	background: dimgrey;
	color: white;
}

#login-button {
	background: #0099CC;
	color: white;
	height: 30px;
}

form {
	border: 3px solid #f1f1f1;
	background-color: white;
	border-radius: 6px;
	font-family: Helvetica;
}
input[type=text], input[type=password] {
	width: 100%;
	padding: 12px 15px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	box-sizing: border-box;
}
button {
	color: black;
	margin: 8px 0;
	border: none;
	cursor: pointer;
	width: 100%;
	font-family: Helvetica;
}

/* Add a hover effect for buttons */
button:hover {
	opacity: 0.8;
}

/* Extra style for the cancel button (red) */
/* .cancelbtn {
	width: auto;
	padding: 10px 18px;
	background-color: #3f3f3f;
} */
.container {
	background-color: white;
    border: 1px solid white;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 1);
}
span.psw {
	float: right;
	padding-top: 16px;
}
@media screen and (max-width: 300px) {
	span.psw {
		display: block;
		float: none;
	}
	.cancelbtn {
		width: 100%;
	}
}

a:link {
    color: #0099cc
}

a:visited {
    color: #0099cc
}