* {
	box-sizing: border-box;
}

body {
	font-family: Arial, sans-serif;
	background: #e5e5e5;
}

main {
	max-width: 800px;
	width: 90%;
	margin: auto;
	padding: 40px;
}

.labelCheckStyle {
	display: block;
	font-weight: 700;
	padding: 10px;
	cursor: pointer;
}

.labelStyle {
	display: block;
	font-weight: 700;
	padding: 10px;
	cursor: pointer;
	position: relative;
	left: 1%;
	top: 5px;
}


/************** ICONOS NOMBRE CAMPOS ****************/
.icoCampos {
	background-color: transparent;
	float: left;
	width: 25px;
	height: 25px;
	position: relative;
	top: 10px;
	z-index: 100;
}

.contenedorInput {
	position: relative;
}

.inputStyle {
	width: 100%;
	background: #fff;
	border: 3px solid transparent;
	border-radius: 3px;
	height: 45px;
	line-height: 45px;
	padding: 0 40px 0 10px;
	transition: .3s ease all;
}

.inputStyle:focus {
	border: 3px solid #0075ff;
	outline: none;
	box-shadow: 3px 0px 30px rgba(163,163,163, 0.4);
}

.msgError {
	font-size: 12px;
	margin-bottom: 0;
	display: none;
}

.msgErrorActiv {
	display: block;
}

.validarEstado {
	position: absolute;
	right: 10px;
	bottom: 15px;
	z-index: 100;
	font-size: 16px;
	opacity: 0;
}

.checkStyle {
	margin-right: 10px;
}

.contenedorMsg {
	background: #bfbfbf;
	height: auto;
	line-height: auto;
	padding: 15px;
	border-radius: 12px;
	display: none;
}

.contenedorMsg p {
	margin: 0;
	color: #ff0000;
	text-align: center;
	text-decoration: none;
	text-shadow: none;
	font-weight: bold;
}

.btnEnviar {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.btnStyle {
	background: #000;
	width: 30%;
	height: auto;
	color: #fff;
	text-decoration: none;
	text-shadow: none;
	font-weight: bold;
	border: none;
	padding: 15px;
	border-radius: 12px;
	cursor: pointer;
	transition: .1s ease all;
}

.btnStyle:hover {
	box-shadow: 3px 0px 30px rgba(255, 255, 255, 0.35);
}

.msgOk {
	font-size: 14px;
	color: #119200;
	display: none;
}

.msgOkActiv {
	display: block;
}


/************** ESTILOS VALIDACION ****************/
.avisOK .validarEstado {
	color: #1ed12d;
	opacity: 1;
}

.avisoError .labelStyle {
	color: #bb2929;
}

.avisoError .validarEstado {
	color: #bb2929;
	opacity: 1;
}

.avisoError .inputStyle {
	border: 3px solid #bb2929;
}

