*{
	box-sizing: border-box;
	border-radius: inherit;
	
}
body{
	margin: 0;
	font-family: sans-serif;
	background: url(../img/gray.jpg) no-repeat;
	width:100%;
	background-size: cover; 
}
h1{
	color: #fff;
	text-align: center;
}
.form-register{
	width: 95%;
	max-width: 500px;
	margin: auto;
	background: white;
	border-radius: 40px;
}
.form-titulo{
	background: #0EA7E7;
	color: #fff;
	padding: 20px;
	text-align: center;
	font-weight: 100;
	font-size: 30px;
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
	border-bottom: 3px solid #EA484E;

}
.contenedor-inputs{
	padding: 10px 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
input{
	margin-bottom: 15px;
	padding: 15px;
	font-size: 16px;
	border-radius: inherit;
	border: 1px solid darkgray;
}
.input-48{
	width: 48%;
}
.input-100{
	width: 100%;
}
.btn-enviar{
	background: #EA484E;
	color: #fff;
	margin: auto;
	padding: 10px 40px;
	cursor: pointer;
	font-size: 20px;

}

button{
    background: #EA484E;
	color: #fff;
	margin: auto;
	padding: 10px 40px;
	cursor: pointer;
	font-size: 20px;
	border-color: white;

}

.btn-regresar{
	background: #335EFF;
	color: #fff;
	margin: auto;
	padding: 10px 40px;
	cursor: pointer;
	font-size: 20px;

}

.btn-enviar:hover{
background: #0EA7E7;
transform: scale(1.1);
}
.btn-enviar:active{
	transform: scale(1.2);
}



.btn-regresar:hover{
background: #0EA7E7;
transform: scale(1.1);
}
.btn-regresar:active{
	transform: scale(1.2);
}



.form-link{
	width: 100%;
	margin: 7px;
	font-size: 14px;
	text-align: center;
}



