*{
	padding:0;
	margin:0;
}

a{
	text-decoration: none;
	font-size:16px;
}

.headerA{
	color:black;
    margin-right: 1.2em;
    text-align: center;
}

.sans{
	/* font-family: 'Cormorant SC', serif; */
	font-family: 'Work Sans', sans-serif;
}

.roboto{
	font-family: 'Roboto', sans-serif;
}

.headerA:hover{
	border-bottom:solid 2px #4397A1;
}

.changeC{
	background: #38C9CC;
	border-color:#38C9CC;
}

.changeC: hover{
	background: #4397A1;
	border-color:#4397A1;
}

.no-borders{
	border-style:none;
	background:none;
	border-bottom:solid 4px gray;
}

.active-section {
	border-bottom:solid 2px #171DBD;
}

.backgroundFoto{
	background-image:  url("../img/form-bg.jpeg");
}

input[placeholder]{
	color:black;
}



.form-input {
	width: 100%;
	height: 50px;
	max-width: 400px;
	position: relative;
	overflow: hidden;
}
.form-input input{
	width: 100%;
	height: 100%;
	background: none;
	/* color: #fff; */
	padding-top: 20px;
	border: none;
	outline: 0px;
}
.form-input .lbl-nombre{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	border-bottom: 2px solid #c7c7c7;
}
.form-input .lbl-nombre:after{
	content: '';
	position: absolute;
	left: 0;
	bottom: -1px;
	width: 100%;
	height: 100%;
	border-bottom: 3px solid #2ecece;
	transform: translateX(-100%);
	transition: all 0.3s ease;
}
.text-nomb{
	position: absolute;
	bottom: 5px;
	left: 0;
	transition: all 0.3s ease;
	color: black;
}
.form-input input:focus + .lbl-nombre .text-nomb,.form-input input:valid + .lbl-nombre .text-nomb{
	transform: translateY(-150%);
	font-size: 14px;
	color: #2ecece;
}
.form-input input:focus + .lbl-nombre:after, .form-input input:valid + .lbl-nombre:after{
	transform: translateX(0%);
}

@media only screen and (min-width:320px) and (max-width:768px){
	.form-input {
		width:85%;
	}
}
