body {
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background: black;
  flex-direction: column;
  flex: 1;
}

.container {
  text-align: center;
  background: rgb(223, 223, 223);
  padding: 2em;
  border-radius: 10px;
}


img.logo {
  width: 250px;
  margin-bottom: 0px;
}

input[type="email"] {
  padding: 0.5em;
  font-size: 1em;
  width: 275px;
  margin: 0.2em 0.2em 1em 0.2em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.button {
  padding: 1em 1.5em;
  font-size: 1em;
  background-color: #DC3545;
  color: white;
  border: none;
  border-radius: 0.5em;
  cursor: pointer;
}

footer {
	color: rgb(223, 223, 223);
	max-width: 700px;
	font-size: 0.7em;
	position: absolute;
    bottom: 0;
	margin-bottom: 1em;
	text-align: center;
	
}
footer a {
	color: #DC3545;
	text-decoration: none;
}