
.caja-campo {
	position: relative;
	margin: 25px 0;
	text-align: left;
	}

	.caja-campo label {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		color: #81868a;
		text-transform: uppercase;
		font-size: .7em;
		width: 100%;
		height: 100%;
		cursor: pointer;
		transition: all .1s linear;
	}

	.caja-campo input {
		width: 100%;
		border: 0;
		border-bottom: 1px solid #cdcdcd;
		padding: 10px 0;
		margin: 0;
		z-index: 50;
		display: block;
		outline: none;
		}

	.caja-campo.focus label {
		top: -10px;
		font-size: .6em;
		height: auto;
	}

	.caja-campo .mensaje_error {
		display: none;
	}

	.caja-campo.error .mensaje_error {
		display: block;
		position: absolute;
		left: 0;
		bottom: -25px;
		color: red;
		font-size: .7em;
		}

		.caja-campo.error input {
			border-bottom: 1px solid red;
		}

	.caja-campo .aclaracion {
		font-size: .7em;
	    line-height: 1.2em;
	    color: #bdbdbd;
	    position: relative;
		}

	.caja-campo.error .aclaracion { display: none; }

.caja-campo.checkbox-lead {
	margin: 30px 0 40px 0;
}

.caja-campo.checkbox-lead input {
	display: inline-block;
	width: auto;
	float: left;
}

.caja-campo.checkbox-lead label {
	position: static;
}

.caja-campo.checkbox-lead label::after {
	clear: both;
	display: block;
	content: '';
}

.caja-campo.checkbox-lead span.label {
    width: 90%;
    display: inline-block;
    float: left;
    line-height: 1.3;
    position: relative;
    top: -3px;
    left: 9px;
}

.caja-campo.checkbox-lead .mensaje_error {
	line-height: 1.2;
	left: 22px;
}