/* importamos la fuente de google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,500;0,600;0,700;1,300&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

body{
    background-color: #323232;
}

/* ------- NAVEGATION MENU ------- */
header{
    position: fixed;
    width: 100%;
    z-index: 100;
    background-color: white;
}

header .content{
    max-width: 1280px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

header img{
    max-width: 100px;
}

nav ul{
    list-style: none;
    display: flex;
    align-items: center;
}

nav ul li a{
    text-decoration: none;
    display: inline-block;
    margin: 10px;
    color: #818181;
    transition: .3s;
}

nav ul li a:hover{
    color: black;
}

#icono-nav{
    color:black;
    display: none;
}

/*------- FORM SECTION ------- */

.wholeForm{
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #323232;
    height: 130vh;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.contenedor{
    width: 90%;
    height: 85%;
    background-color: #000;
    border-radius: 40px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 50px;
}
.formulario{
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contenedor-imagen{
    width: 60%;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contenedor-imagen img{
    width: 80%;
    object-fit: cover;
}

.video{
    max-width: 800px;
    border-radius: 40px;
    margin: auto;
    display: block;
}
.contenedor h3{
    color: #353535;
    margin-bottom: 10px;
}
.contenedor h2{
    font-weight: normal;
    font-size: 3.5rem;
    line-height: 4rem;
    margin-bottom: 10px;
}
.contenedor p{
    color: #878787;
}
.contenedor p a{
    color:#ff5b31;
    text-decoration: none;
    display: inline-block;
    margin-left: 10px;
}
.contenedor form{
    margin-top: 50px;
}
.entrada{
    background-color: #353535;
    border-radius: 50px;
    padding: 10px 25px;
    margin-bottom: 20px;
}
.entrada label{
    display: block;
    color: #878787;
    font-size: 14px;
    line-height: 14px;
}
.entrada input{
    background-color: transparent;
    border: none;
    outline: none;
    color: #fff;
    width: 100%;
}
.btn{
    background-color: #ff5b31;
    border: none;
    padding: 10px 25px;
    color: #fff;
    border-radius: 30px;
    cursor: pointer;
    margin-bottom: 20px;
}

.btn2{
    display: inline-block;
    width: 180px;
    background-color: #ff5b31;
    border: none;
    padding: 10px 25px;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 20px;
}

input[type="submit"]:disabled {
  background-color: #d1d1d1;
  color: #7a7a7a;
  cursor: not-allowed;
}

.terminos {
    margin-bottom: 20px;
    font-size: 12px;
    color: #878787;
}

.terminos a {
    color: #ff5b31;
    text-decoration: none;
}

.pieImg{
    width: 90%;
    margin: auto;
    margin-top: 20px;
    color: #878787;
    font-size: 12px;
}

.pieImg p{
    margin-bottom: 10px;
    text-align: center;
}

.pieImg a{
    color: #ff5b31;
    text-decoration: none;
}

/* seccion responsive */
@media screen and (max-width:900px) {
    body{
        height: auto;
    }
    .contenedor{
        display: block;
        height: auto;
    }
    .formulario{
        width: 100%;
    }
    .contenedor-imagen{
        width: 100%;
    }
    .video{
        width: 100%;
        margin-top: 20px;
    }
    .contenedor .formulario .titulo{
        font-size: 2.5rem;
    }
}