@charset "utf-8";
/* CSS Document */
body {
	background-image: url(/HOME/fondo_3.png);
	background-size: 100vw 100vh;
	background-attachment: fixed;
	margin: ;
	font-family: monospace;
}
form{
	width: 450px;
	margin: auto;
	background: rgba(0,0,0,0.4);
	padding: 10px 20px;
	box-sizing: border-box;
	margin-top: 100px;
	border-radius: 15px;
	text-align: center;
	color: #fff;
}
h2 {
	color: #fff;
	text-align:center;
	font-size: 30px;
	margin-bottom:20px;
}
input, textarea {
	width:100%;
	margin-bottom: 20px;
	padding: 7px;
	box-sizing: border-box;
	font-size: 17px;
	border: none;
}
textarea{
	min-height: 100px;
	max-height: 200px;
	max-width:100%;
}
#borrar{
	background: #066;
	color: #fff;
	paddin: 20px;
}
#borrar:hover{
	background: #31384A;
	cursor: pointer;
	color:#006;
}
}
#entrar{
	background: #066;
	color: #fff;
	paddin: 20px;
}
#entrar:hover{
	cursor: pointer;
	color:#31384A;
}
@media(max-width:480px){
	form{
		width:100%;
}
}
