<html>
	<head>
		<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;700&display=swap" rel="stylesheet">
		<title>This account is inactive</title>
		<style type="text/css">

			* {
				font-family: 'Roboto', sans-serif;
				font-weight: 300;
				-moz-osx-font-smoothing: grayscale;
				-webkit-font-smoothing: antialiased;
			}

			body,
			html {
				margin: 0;
				height: 100%;
				padding: 0;
				width: 100%;
			}

			body {
				align-items: center;
				background-color: #F0F0F0;
				display: flex;
				justify-content: center;
			}

			div.container {
				background-color: White;
				box-shadow: 0 0 8px 4px #DDD;
				max-width: 90%;
				padding: 2em;
				text-align: center;
				width: 400px;
			}

			div.container h1 {
				font-size: 27px;
				font-weight: 700;
				text-align: center;
				text-transform: uppercase;
			}

			div.container p {
				font-size: 18px;
				text-align: center;
			}

		</style>
	</head>
	<body>
		<div class="container">
			<h1>Site not found</h1>
			<p>We're sorry, but this account is no longer active.</p>
		</div>
	</body>
</html>
