* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
a:link, a:visited {
  background-color: white;
  color: black;
  border: 2px solid green;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

a:hover, a:active {
  background-color: green;
  color: white;
}
input[type=button], input[type=submit] {
	width: 90%;
  background-color: #0B3D0C;
  border: none;
  color: white;
  padding: 16px 32px;
color: white;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 30px;
  text-decoration: none;
  margin: 4px 2px;
  cursor: pointer;
}
input[type=text], input[type=email]{
  width: 90%;
  padding: 12px 20px;
  margin: 8px 0;
  box-sizing: border-box;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 30px;
}

img {
  width: 98%;
  height: auto;
}

.contenedor {
	padding:20px;
	border-radius: 20px;
	width:97%;
	max-width:1000px;
	margin: auto;
	text-align:center;
	/* Flexbox */
	display:flex;
	flex-flow:row wrap;
	background-color: #FF0000;
}

body {
	background:#e9e9e9;
}

h2.titulo {
	color: white;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 30px;
}
h2.alerta_registrado {
	
	color: white;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 30px;
	
	background:#FB0A11;
}

h2.recupera {
	
	color: #0F0436;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-size: 30px;
	
	background:#F7F2F2;
}



	


@media screen and (max-width: 1000px) {
	aside {
		flex-direction:column;
	}

	footer {
		justify-content:space-around;
	}
}