.email_list {
	/*margin: 150px 0;*/
	display: flex;
	justify-content: center;
	flex-direction: column;
	gap: 20px;
	/*background-color: #039cdf;*/
	padding: 20px;
	background: #2a398f;
  box-sizing: border-box;
	box-shadow: inset 0 0 15px 0 rgba(0,0,0,0.5),
									0 0 10px 0 rgba(0,0,0,0.3);
}
.email_list h2 {
	margin: auto;
	font-size: 3rem;
	color: #fff;
}
.email_list_form {
  max-width: 320px;
  display: flex;
  flex-direction: row;
	margin: auto;
}
.email_list_form input,
.email_list_form button {
  padding: 12px;
	border: none;
}
.email_list_form input:focus {
	border: none;
	outline: none;
	background-color: #eee;
}
.email_list_form button {
	background-color: #25D366;
	color: #fff;
	font-weight: bold;
  border: none;
  cursor: pointer;
	transition: background-color 0.15s ease;
}
.email_list_form button:hover {
  background: #21BD5B;
}
