*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

body{
	background: url(../img/palmarito.jpg);
	-webkit-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment: fixed;
	padding: 10px;
}

main{

	position: center;

}

footer{
	position: center;
	text-align: center;
	font-family: roboto;
	color: #FFFFFF;
	font-size: 15px;
	font-weight: bold;
	}

.contenedor_inicio_registro .titulo h1{
	font-weight: normal;
	font-family: cambria bold;
	color: #FFFFFF;
	text-align: center;
	padding: 14px 0;
	font-size: 40px;
}

.contenedor_inicio_registro .titulo h2{

	font-weight: normal;
	font-family: cambria bold;
	color: #FFFFFF;
	text-align: center;
	padding: 14px 0;
	font-size: 30px;
}
.contenedor_inicio_registro {

	background: rgba(0, 0, 0, .7);
	width: 90%;
	max-width: 650px;
	/*min-width: 400px;*/
	margin: auto;
	padding: 5px 35px;
	margin-top: 30px;
	padding-bottom: 30px;
	border-radius: 10px;
	/*position: relative;*/
}

.contenedor_inicio_registro label {
	display: block;
	color: #FFFFFF;
	font-size: 18px;
	font-family: Roboto;
	position: relative;
}

.contenedor_inicio_registro input, select {
	background: rgba(0, 0, 0, .8);
	border: none;
	outline: none;
	border-bottom: 2px solid #0168fd;
	width: 100%;
	padding: 12px;
	margin-bottom: 20px ;
	border-radius: 2px;
	font-size: 14px;
	color: #FFFFFF;
	font-family: Roboto;
}

.contenedor_inicio_registro button {
	width: 100%;
	font-family: Roboto;
	outline: none;
	background: #0168fd;
	font-size: 16px;
	border: none;
	color: #FFFFFF;
	padding: 15px 0;
	cursor: pointer;
	transition: all.5s ease;
}

.contenedor_inicio_registro button: hover {
	background: #f29718;
}