body {
	font-family: 'Roboto', Arial, sans-serif;
}

h1 {
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 14pt;
	font-weight: 400;
	color: #333333;
}

input.login {
	padding: 8px;
	border: 1px solid #cccccc;
	border-radius: 5px;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 5px;
	font-family: Inter, 'Roboto', Arial, sans-serif;
	font-size: 10pt;
	transition-delay: 0s;
	transition-duration: 0.1s;
	transition-property: all;
	transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);

}

input.login::placeholder {
	color: #aaaaaa;
}

input.login:hover {
	border: 1px solid #65acdf;
	box-shadow: 0px 0px 5px #3389af;
}