/* 
* Formulario
* -----------------------------------------------------
*/

input {
  border: none;
  background-color: transparent;
}

.formulario {
  background-color: #ffffff;
  padding: 36px;
  /* transform: translateY(-50%); */
  width: 100%;
  height: 350px;
  background-color: #ECE6E4;
}

.formulario h1 {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  font-size: 20px;
}

form .inputs {
  flex-wrap: wrap;
  justify-content: space-between;
  display: flex;
}

form .input-style {
  margin-bottom: 25px;
}

.formulario form .input-style.lg {
  width: 54%;
}

.formulario form .input-style.xs {
  width: 10%;
}

.formulario form .input-style.sm {
  width: 30%;
}

.formulario form .input-style.m {
  width: 44%;
}

form .input-style input {
  border: 0;
  border-bottom: 1px solid #000000;
  caret-color: #000000;
  color: #000000;
  font-family: 'Roboto-Regular';
  font-size: 11px;
  padding: 10px 0px;
  position: relative;
  width: 100%;
}

form .input-style input::placeholder {
  color: #4D4D4D;
  font-family: 'Univers', sans-serif;
  font-size: 14px;
}

form .input-style input:focus {
  border: 0;
  outline: 2px solid lightgray;
}

form .checkbox {
  display: flex;
  margin-bottom: 8px;
}

.formulario form .checkbox input {
  accent-color: #7be1ff;
  cursor: pointer;
}

form .checkbox span {
  font-family: 'Univers', sans-serif;
  font-size: 14px;
  color: #4D4D4D;
  margin-left: 6px;
}

form .submits {
  display: flex;
  justify-content: space-between;
}

form .submit {
  margin-top: 24px;
}

form .submit input {
  background-color: transparent;
  color: white;
  text-transform: uppercase;
  font-family: 'Univers', sans-serif;
  font-size: 16px;
  background-color: #4D4D4D;
  letter-spacing: 0.2rem;
  padding: 12px 120px;
  width: 100%;
  height: inherit;
}

.formulario form .submits>div:first-child {
  align-items: end;
  gap: 40px;
}

form .submit input:hover {
  filter: drop-shadow(2px 4px 6px #4D4D4D);
  transition: 0.2s ease-in;
}

/* 
* Formulario footer
* -----------------------------------------------------
*/
#formFooter .right {
  flex: 1;
  height: auto;
  max-height: 635px;
}

#formFooter .right img {
  height: 100%;
}

#formFooter .left {
  width: 40%;
  padding: 100px 80px;
  max-width: 650px;
}

#formFooter .left h1 {
  text-transform: uppercase;
  font-size: 20px;
}

#formFooter form .input-style.lg,
#formFooter form .input-style.m {
  width: 100%;
}

#formFooter form .input-style.sm {
  width: 80%;
}

#formFooter form .input-style.xs {
  width: 15%;
}

#formFooter form .submits,
#formFooter form .submits>div:first-child {
  flex-direction: column;
  align-items: self-start;
}

@media only screen and (max-width: 1200px) {
  .formulario form .submits>div:first-child {
    gap: 20px;
  }

  #formFooter .left {
    padding: 60px;
  }

  form .submit input {
    padding: 12px 100px;
  }

}

@media only screen and (max-width: 992px) {
  .formulario form .submits>div:first-child {
    gap: 0;
    flex-direction: column;
  }

  #formFooter {
    flex-direction: column;
  }

  #formFooter .left {
    width: 100%;
    max-width: 100%;
  }

  #formFooter .right img {
    height: 400px;
  }

}

@media only screen and (max-width: 768px) {
  form .submits {
    flex-direction: column;
  }

  .formulario form .submits>div:first-child {
    align-items: flex-start;
  }

  .formulario form .input-style.lg,
  .formulario form .input-style.m {
    width: 100%;
  }

  .formulario {
    height: auto;
  }

  .formulario form .input-style.xs {
    width: 20%;
  }

  .formulario form .input-style.sm {
    width: 78%;
  }

}

@media only screen and (max-width: 480px) {
  .formulario {
    padding: 30px;
  }

  #formFooter .right img {
    height: 300px;
  }

  #formFooter .left {
    padding: 30px;
  }

  #formFooter .left h1,
  .formulario h1 {
    font-size: 18px;
  }

  .container {
    padding: 0;
  }

  footer .banner img {
    width: 220px;
  }

  form .checkbox span {
    font-size: 12px;
  }

  form .submit input {
    padding: 0;
  }

  footer .banner {
    padding: 50px 0px;
  }

  form .submit {
    width: 100%;
    height: 40px;
  }
}