* {
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	box-sizing: border-box;
}

body {
	
	/*background: #DEDEDE;
	display: flex;
	min-height: 100vh;
	*/
	
	margin: 0;
	font-family: sans-serif;
	background: url(fondo.jpg) no-repeat fixed center center #fff; /*imagen de fondo*/
	background-size: cover; /*que imagen se ajuste*/
}

form {
	margin:auto;
	width: 50%;
	max-width: 500px;
	background: #F1F1F1; /*#F3F3F3;*/
	padding: 30px;
	border: 1px solid rgba(0,0,0,0.2);
}

h2 {
	text-align: center;
	margin-bottom: 20px;
	color: #33363c;
}

input {
	display: block;
	padding: 10px;
	width: 100%;
	margin: 30px 0;
	font-size: 20px;
} 

input [type="reset"]	{
	background: linear-gradient (#FED437, #fed437);/*(#FFDA63, #FFB940);*/
	border: 0;
	color: brown;
	opacity: 0.8;
	cursor: pointer;
	border-radius: 20px;
	margin-bottom: 0;
}

input [type="reset"] :hover {
	opacity: 1;
}

input [type="reset"] :active {
	transform: scale(0.95);
}

@media (max-width:768px) {
	form{
		width: 95%;
	}
}