@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
	--transition: 180ms ease all;
}
*,:after,:before{-moz-box-sizing:border-box;box-sizing:border-box;-webkit-font-smoothing:antialiased;font-smoothing:antialiased;text-rendering:optimizeLegibility}

body {
	margin: 0px;
	padding: 0px;
	font-family: 'Inter', Arial, sans-serif;
	background: #252525;
	font-size: 18px;
	line-height: 26px;
	color: #fefefe;
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	padding: 24px;
	gap: 1rem;
}
div { 
	display:block; 
	position:relative; 
	margin:0px; 
	padding:0px; 
}
img.background {
	display:block;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	object-fit:cover;
	z-index:0;
	opacity: 0.1;
	mix-blend-mode: overlay;
}
img.logo {
	width: 320px;
	height: auto;
	max-width: 100%;
	z-index:5;
	position:relative;
}
form#subForm {
	width: 300px;
	height: auto;
	max-width: 100%;
	z-index:5;
	position:relative;
}
input, textarea, select {
	box-sizing: border-box;
	display: block;
	max-width: 100%;
	width: 100%;
	height: auto;
	padding: 1rem;
	margin: 8px auto;
	font-size: 1rem;
	line-height: 100%;
	border: 1px #000 solid;
	border-radius: 12px;
	color: #000;
	background: #d3d3d3;
}

a.button, input[type="submit"], button {
	display: block;
	position: relative;
	margin: 0 auto;
	padding: 1rem;
	width: 100%;
	height: auto;
	font-size: 1rem;
	line-height: 100%;
	border: 0px;
	border-radius: 12px;
	background: #5f5151;
	color: white;
	transition: var(--transition);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
	cursor: pointer;
}

a.button:hover, input[type="submit"]:hover, button:hover {
	background:#000;
	color:white;
}