@font-face {

	font-family: regular;
	src: url("font-regular.ttf");

}

@font-face {

	font-family: bold;
	src: url("font-bold.ttf");

}

:root {

	--l-gray: #f0f0f0;
	--d-gray: #d0d0d0;

	--black: #202020;
	--red: #f00040;

}

body {

	float: left;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 100%;
	min-height: 100%;
	background: var(--l-gray);

}

body, form {

	margin: 0;

}

input {

	border: none;

}

input:focus {

	outline: none;

}