@font-face {
    font-family: FS Emeric;
    font-weight: 400;
    src: url("./FSEmeric/FSEmeric-Regular.otf") format("opentype");
}

@font-face {
    font-family: FS Emeric;
    font-weight: 600;
    src: url("./FSEmeric/FSEmeric-Bold.otf") format("opentype");
}

@font-face {
    font-family: FS Emeric;
    font-weight: 700;
    src: url("./FSEmeric/FSEmeric-SemiBold.otf") format("opentype");
}

@font-face {
    font-family: FS Emeric;
    font-weight: 900;
    src: url("./FSEmeric/FSEmeric-Heavy.otf") format("opentype");
}

* {
    margin: 0;
    box-sizing: border-box;
    font-family: FS Emeric;


}


.formulario {
    width: 100%;
}

.formulario>div {
    display: flex;
    justify-content: center;
    padding: 30px;

}

form {
    padding: 40px;
    border-color: #004571;
    border-width: 1px;
    border-style: solid;
    border-radius: 0.375rem;
    text-align: center;
    width: 40%;
}

.terminos {
    color: #004571;
    padding-left: 10px;
}

button {
    background-color: #EC7A29;
    border: 0;
    width: 200px;
    border-radius: 6px;
    color: #ffffff;
    font-size: 16px;
    height: 35px;
    margin-top: 20px;
}

input[type="text"],
input[type="email"] {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.375rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    margin-top: 10px;
}

.label {
    padding: 10px 0px;
}

form h3 {
    padding-bottom: 10px;
    font-size: 27px;
    color: #EC7A29;
}


.hero {
    display: flex;
    flex-direction: row;
    background-image: url('../images/trabajador.png');
    padding: 50px 0px;
	  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero_text {
    width: 50%;
    padding: 45px 80px;
}

.hero_text h1 {
    font-size: 50px;
    font-weight: bold;
    color: #ffffff;
    line-height: 53px;
    padding-bottom: 20px;
}

.hero_text h2 {
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    line-height: 33px;
}

.hero_img img {
    width: 80%;
}

form p {
    font-size: 20px;
    color: #004571;
    font-weight: bold;
}

label {
    color: #004571;
    font-weight: bold;
 
}



.main-image {
    width: 100%;
}

.main-image img {
    width: 100%;
}

.body {
    overflow: hidden;
}

.header_wrapper {
    background-color: #F2F2F2;
    display: flex;
    flex-direction: row;
    padding: 20px 90px;
    box-shadow: 0 0 15px 1px rgb(0 0 0 / 7%);
}


.logo_wrapper img {
    width: 100%;
    max-width: 120px;
}




.bttn_enviar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.bttn_enviar button {
    height: 35px;
    width: 150px;
    background-color: #EC7A29;
    border: none;
    border-radius: 10px;
    font-family: FS Emeric;
    font-size: 16px;
    color: #ffffff;
    font-weight: 700;
}

footer {
    padding: 10px 50px;
}

.footer_logo img {
    width: 100%;
    max-width: 150px;
}


.footer_wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    border-top: 1px solid #EC7A29;
    padding: 20px;
}

.footer_social a {
    text-decoration: none;
}

.footer_social a img {
    width: 40px;
}



@media only screen and (max-width: 500px) {


    .form_titular,
    .form_referido {
        background-color: #ffffff;
        width: 100%;
        max-width: 400px;
        margin: 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 25px;
        box-shadow: 0px 0px 100px #707070;
    }
}

@media only screen and (max-width: 900px) {
    .header_wrapper {
        padding: 20px;
        justify-content: space-around;
    }

    .campaign_wrapper {
        display: flex;
        flex-direction: column;
        align-self: center;
        width: 30%;
    }

    .logo_wrapper {
        width: 30%;
    }

    form {
        width: 100%;
    }

    .hero {
        flex-direction: column;
        padding: 20px 0px;
    }

    .hero_text,
    .hero_img {
        width: 100%;
    }

    .hero_text {
        padding: 20px;
        text-align: center;
    }

    .hero_text h1{
        font-size: 40px;
        line-height: 43px;
    }

    .hero_text h2{
        font-size: 25px;
        line-height: 28px;
    }
}