body {
	background-color: #000;
}


.content {
	width: 98vw;
	height: 96vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background-image: url(../../construccion/img/fondo_tmp.jpg?v4);
	background-size: 60vh;
	background-repeat: no-repeat;
	background-position: center;
}


.contacto,
.confirmacion {
	width: 70%;
	max-width: 400px;
	border: 1px solid #CED5D7;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	padding: 45px 0 20px;
	padding: 25px;
	margin: 50px auto 0;
	background-color: white;
	box-shadow: 0px 5px 10px #B5C1C5, 0 0 0 10px #0009 inset;
	-webkit-box-shadow: #0009 0px 5px 10px;
	-moz-box-shadow: #0009 0px 5px 10px;
}

.contacto label {
	display: block;
	font-weight: bold;
}

.contacto div {
	margin-bottom: 5px;
}

.contacto input[type='text'],
.contacto textarea {
	padding: 4px 3px;
	width: 100%;
	border: 1px solid #CED5D7;
	resize: none;
	box-shadow: 0 0 0 3px #EEF5F7;
	-webkit-box-shadow: #EEF5F7 0px 0px 0px 3px;
	-moz-box-shadow: #EEF5F7 0px 0px 0px 3px;
	margin: 5px 0;
}

.contacto input[type='text']:focus,
.contacto textarea:focus {
	outline: none;
	box-shadow: 0 0 0 3px #dde9ec;
	-webkit-box-shadow: #dde9ec 0px 0px 0px 3px;
	-moz-box-shadow: #dde9ec 0px 0px 0px 3px;
}

.contacto input[type='text'].invalido,
.contacto textarea.invalido {
	box-shadow: 0 0 0 3px #FFC9C9;
	-webkit-box-shadow: #FFC9C9 0px 0px 0px 3px;
	-moz-box-shadow: #FFC9C9 0px 0px 0px 3px;
}

.contacto input[type='submit'] {
	border: 1px solid #CED5D7;
	box-shadow: 0 0 0 3px #EEF5F7;
	-webkit-box-shadow: #EEF5F7 0px 0px 0px 3px;
	-moz-box-shadow: #EEF5F7 0px 0px 0px 3px;
	padding: 8px 16px;
	border-radius: 20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	font-weight: bold;
	text-shadow: 1px 1px 0px white;

	background: #e4f1f6;
	background: -moz-linear-gradient(top, #e4f1f6 0%, #cfe6ef 100%);
	background: -webkit-linear-gradient(top, #e4f1f6 0%, #cfe6ef 100%);
	background: -webkit-gradient(linear, 0 0, 0 top, from(#e4f1f6), to(#cfe6ef));
	background: -ms-linear-gradient(#e4f1f6, #cfe6ef);
	background: -o-linear-gradient(#e4f1f6, #cfe6ef);
	background: linear-gradient(#e4f1f6, #cfe6ef);
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#e4f1f6', EndColorStr='#cfe6ef');



}

.contacto input[type='submit']:hover {
	background: #edfcff;
	background: -moz-linear-gradient(top, #edfcff 0%, #cfe6ef 100%);
	background: -webkit-linear-gradient(top, #edfcff 0%, #cfe6ef 100%);

	background: -webkit-gradient(linear, 0 0, 0 top, from(#edfcff), to(#cfe6ef));
	background: -ms-linear-gradient(#edfcff, #cfe6ef);
	background: -o-linear-gradient(#edfcff, #cfe6ef);
	background: linear-gradient(#edfcff, #cfe6ef);
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#edfcff', EndColorStr='#cfe6ef');
}

.contacto input[type='submit']:active {
	background: #cfe6ef;
	background: -moz-linear-gradient(top, #cfe6ef 0%, #edfcff 100%);
	background: -webkit-linear-gradient(top, #cfe6ef 0%, #edfcff 100%);

	background: -webkit-gradient(linear, 0 0, 0 top, from(#cfe6ef), to(#edfcff));
	background: -ms-linear-gradient(#cfe6ef, #edfcff);
	background: -o-linear-gradient(#cfe6ef, #edfcff);
	background: linear-gradient(#cfe6ef, #edfcff);
	filter: progid:DXImageTransform.Microsoft.Gradient(GradientType=0, StartColorStr='#cfe6ef', EndColorStr='#edfcff');
}

.error {
	background-color: #BC1010;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	color: white;
	font-weight: bold;
	margin-left: 16px;
	margin-top: 6px;
	padding: 6px 12px;
	position: absolute;
}

.error:before {
	border-color: transparent #BC1010 transparent transparent;
	border-style: solid;
	border-width: 6px 8px;
	content: "";
	display: block;
	height: 0;
	left: -16px;
	position: absolute;
	top: 8px;
	width: 0;
}

.result_fail {
	background: none repeat scroll 0 0 #BC1010;
	border-radius: 20px 20px 20px 20px;
	color: white;
	font-weight: bold;
	padding: 10px 20px;
	text-align: center;
}

.result_ok {
	background: none repeat scroll 0 0 #1EA700;
	border-radius: 20px 20px 20px 20px;
	color: white;
	font-weight: bold;
	padding: 10px 20px;
	text-align: center;
}

form.contacto {
	width: 400px;
	max-width: 70%;
}

form.contacto * {
    font-size: clamp(0.9rem, 3.1vw, 1rem);
    color: #999;
    font-weight: 400;
}

