.contenido{
	width:100%;
	max-width: 600px;
	display: block;
	margin:20px auto;
	margin-bottom: 80px;
}


.celda-foto{
	width: 50%;
}

.celda-foto img{
	display: block;
	width: 100%;
}

.celda-formulario{
	width:50%;
	box-sizing: border-box;
	background-color: white;
	padding:20px;
	text-align: center;
}

.titulo-pagina{
	font-family: fuente-bold;
	font-size: 25px;
	margin-bottom: 20px;
}

input{
	border:1px solid #173465;
	background-color: white;
	height: 30px;
	box-sizing: border-box;
	padding-left:10px;
	padding-right:10px;
	margin-bottom: 20px;
	width:100%;
}

.boton{
	display: inline-block;
	padding-left: 30px;
	padding-right: 30px;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #d84d54;
	color:white;
	font-family: fuente-bold;
	cursor:pointer;
	margin-bottom: 30px;
	border-radius: 60px;
}

.boton:hover{
	background-color: #0e0734;
}

.contenedor-boton-registrarse a{
	text-decoration:underline
}

.celda-foto .imagen-movil{
	display: none;
}

@media only screen and (max-width: 550px) {
	.celda-foto .imagen-movil{
		display: block;
	}
	.celda-foto .imagen-wide{
		display: none;
	}
	.celda-foto{
		width:100%;
	}
	.celda-formulario{
		width:100%;
	}
}