*
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}
section
{
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex; 
    background: linear-gradient(30deg,hsl(342, 12%, 79%),#FFFFFF);
    


}
section .imgBx h1
{
    text-align: center;
    font-size: 4vmax;
    line-height: 0;
    font-weight: 200;
    margin-top: 10px;
    margin-bottom: 30px;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 2px 2px 5px red;

}
section .imgBx
{
    position: relative;
    width: 50%;
    height: 100%;
    color: #FFFFFF;
    background-size: cover;
    background-repeat: no repeat;
    background-image: url(../img/build.svg);
    overflow: hidden;
}
.overlay
{
    padding: 30px;
    width: 100%;
    height: 100%;
    background: linear-gradient(355deg,#000000,#03045E);
    overflow: hidden;
    box-sizing: border-box;
}
.overlay p
{
    text-align: center;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
	letter-spacing: .5em;
	display: inline-block;
	border: 4px double rgba(255,255,255,.25);
	border-width: 4px 0;
	padding: 1.5em 0em;
	position: absolute;
	top: 5%;
	left: 50%;
	width: 40em;
	margin: 0 0 0 -20em;
    text-shadow: 1px 1px 1px red;

}

.overlay span
{
    font: 700 4em/1 "Oswald", sans-serif;
    letter-spacing: 0;
    padding: .25em 0 .325em;
    display: block;
    margin: 0 auto;
    text-shadow: 0 0 80px rgba(255,255,255,.5);
    background: #FFFFFF;
    /*background: url(../img/diagonales.jpg) repeat-y;    */
    -webkit-background-clip: text;
    background-clip: text;
    /* Animate Background Image */
	  -webkit-text-fill-color: transparent;
	  -webkit-animation: aitf 40s linear infinite;
      /* Activate hardware acceleration for smoother animations */
	  -webkit-transform: translate3d(0,0,0);
	  -webkit-backface-visibility: hidden;
}
@-webkit-keyframes aitf {
	0% { background-position: 0% 50%; }
	100% { background-position: 100% 50%; }
}

section .imgBx:before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

section .imgBx img
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
section .contentBx
{
    display: flex;
    justify-content: center;
    align-items: center ;
    width: 50%;
    height: 100%;
}
section .contentBx .formBx
{
    width: 50%;
    border-bottom: 1px solid #03045E;

}

section .contentBx .formBx h2
{
    color: #607d8b;
    font-weight: 600;
    font-size: 1.5em;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 4px solid #03045E;
    display: inline-block;
    letter-spacing: 1px;
}
section .contentBx .formBx .inputBx
{
    margin-bottom: 20px;
}
section .contentBx .formBx .inputBx span
{
    font-size: 16px;
    margin-bottom: 5px;
    display: inline-block;
    color: #607d8b;
    font-weight: 300;
    font-size: 16px ;
    letter-spacing: 1px;
}
section .contentBx .formBx .inputBx input
{
    width: 100%;
    padding: 10px 20px;
    outline: none;
    font-weight: 400;
    border: 1px solid #607d8b;
    font-size: 16px;
    letter-spacing: 1px;
    color: #607d8b;
    /*background: transparent;*/
    border-radius: 5px;
    border-bottom: solid 1px #159098;
    -webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
    transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 96%, #159098 4%);
    background: linear-gradient(to bottom , rgba(255, 255, 255, 0) 96%, #159098 4%);
    background-position: -375px 0px;
    background-size: 375px 100%;
    background-repeat: no-repeat;
}
section .contentBx .formBx .inputBx input:focus, input:valid 
{
    box-shadow: none;
    outline: none;
    background-position: 0 0;
}
section .contentBx .formBx .inputBx input::-webkit-input-placeholder 
{
    font-family: 'roboto', sans-serif;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    margin-top: 15px ;
}
section .contentBx .formBx .inputBx input:focus::-webkit-input-placeholder, 
section .contentBx .formBx .inputBx input:valid::-webkit-input-placeholder {
    color: #159098;
    font-size: 11px;
    -webkit-transform: translateY(-20px);
    transform: translateY(-12px);
    visibility: visible !important;
}
section .contentBx .formBx .inputBx input[type="submit"]
{
    background: rgba(0, 0, 0, 0.9);
    color: #fff;
    outline: none;
    border: none;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.2);
}
section .contentBx .formBx .inputBx input[type="submit"]:hover {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.2);
}



section .contentBx .formBx .inputBx input[type="submit"]:hover
{
    background: #607d8b;
}

@media (max-width:768px)
{
    section .imgBx
    {
        position: absolute;
        top: -10px;
        left: 0;
        width: 100%;
        height: 100%;
    }
    section .imgBx .overlay p
    {
        position: absolute;
        top: 0;
        text-align: center;
        font-family: 'Oswald', sans-serif;
        text-transform: uppercase;
        letter-spacing: .1em;
        display: inline-block;
        border: 4px double rgba(255,255,255,.25);
        border-width: 4px 0;
        padding: 0.4em 0em;
        position: absolute;
        top: 5%;
        left: 50%;
        width: 40em;
        margin: 0 0 0 -20em;

    }
    section .contentBx
    {
        margin-top: 90px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    section .contentBx .formBx
    {
        width: 100%;
        padding: 40px;
        background: rgba(255, 255, 255, 0.9);
        margin: 50px;
    }

}
