#formHome .row{
    min-height: fit-content;
    height: 900px;
    padding: 20px 80px;

}


#formHome .col{
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;

}


#formHome #formInputs{
    background-color: rgb(255, 255, 255);
    height: 670px;
    width: 100%;
    max-width: 1100px;
    z-index: 1;
    box-shadow: -2px 1px 3px #0b35604b;
    border-radius: 10px;
}


#contatoForm{
    padding: 30px;
    height: 100%;
    width: 100%;
}

#contatoForm h3{
  text-align: center;
  margin-bottom: 30px;
  color: #0B3660;
}

#contatoForm .formField{
    position: relative;

}

#contatoForm .formField .formFieldComponent {
    padding: 10px 15px;
    outline: none;
    border: none;
    border-radius: 5px;
    background-color: #f4f4f4;
    color: #0B3660;
    font-size: 16px;
    font-weight: 550;
    transition: 0.3s ease-in-out;
    box-shadow: 0 0 0 5px transparent;
    margin: 0 0 35px 0;
    width: 100%;
  }

  #contatoForm #caixadetexto{
    height: 200px !important;
    width: 100%;
    margin-bottom: 20px;
    line-height: 1; 
    resize: none;
  }
  
  #contatoForm .formField .formFieldComponent:hover,
  #contatoForm .formField .formFieldComponent:focus {
    box-shadow: 0 0 0 2px #0B3660;
  }
  
#contatoForm .formField span {
    position: absolute;
    left: 0;
    top: 0;
    padding: 8px 15px;
    color: #0B3660;
    font-size: 16px;
    font-weight: 600;
    text-shadow: none;
    transition: 0.3s ease-in-out;
    pointer-events: none;
  }
  
  #contatoForm .formField .formFieldComponent:focus + span,
  #contatoForm .formField .formFieldComponent:valid + span{
    transform: translateY(-32px) translateX(-18px) scale(0.95);
    transition: 0.3s ease-in-out;
  }

  #contatoForm #divBotaoForm{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #contatoForm #botaoForm{
    width: 40%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #0B3660;
    color: white;
    font-weight: 500;
    transition: all 300ms;
    font-size: 19px;
    margin: 0 auto;
  }

  #contatoForm #botaoForm:hover{
    box-shadow: 2px 6px 12px #0b356055;
    transform: scale(1.05) translate(5px, -5px);
    text-shadow: 2px 6px 8px #0b356055;
  }

  #contatoForm #botaoForm:disabled{
    background-color: #3a3a3a;
    color: rgb(163, 163, 163);
    cursor: not-allowed;
  }

  #contatoForm #botaoForm:disabled:hover{
    transform: none !important;
    box-shadow: none !important;
  }
  
#formHome #informacoesForm{
  background-color: #0B3660;
  width: 25%;
  max-width: 350px;
  height: 100%;
  margin-left: -70px;
  padding: 50px 0 50px 90px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: start;

}


.tituloInformacoesForm{
    font-size: 1.7rem;
}

#informacoesForm ul{
  list-style-type: none;
  padding: 0px;
}

#informacoesForm li{
  margin-top: 20px;
  text-align: start;
}

#informacoesForm hr{
  width: 25%;
  margin: 30px 0;
}

#informacoesForm .fa-instagram:hover {
  color: #E1306C;
}
#informacoesForm .fa-facebook:hover{
  color: #1877F2;
}

#redesForm a{
  color: #ffffff;
  margin-right: 30px;
}

#liRedesForm{
  margin-bottom: 12px;
}

#redesForm span{
  
  font-size: x-large;
  transition: transform 0.5s ease;
}
#redesForm span:hover{
  transform: scale(1.2)
}


#contatoForm, #informacoesForm{
  box-shadow: 3px 3px 7px #0b35609a;
}

.loader {
  display: flex;
  gap: 0.6em;
  list-style: none;
  align-items: center;
  justify-content: center;
}

.dots {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffffff;
}

#textLoaderFormButton{
  font-size: 19px;
}

#dot-1 {
  animation: loader-1 0.6s infinite ease-in-out;
}

#captcha{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}



@keyframes loader-1 {
  50% {
    opacity: 0;
    transform: translateY(-0.3em);
  }
}

#dot-2 {
  animation: loader-2 0.6s 0.3s infinite ease-in-out;
}

@keyframes loader-2 {
  50% {
    opacity: 0;
    transform: translateY(-0.3em);
  }
}

#dot-3 {
  animation: loader-3 0.6s 0.6s infinite ease-in-out;
}

@keyframes loader-3 {
  50% {
    opacity: 0;
    transform: translateY(-0.3em);
  }
}

.checkbox-wrapper {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 60px;
  margin-top: 30px;
}

.checkbox-wrapper .backgroundFeedbackFormSucess {
  fill: #77FF94;
}

.checkbox-wrapper .backgroundFeedbackFormError{
  fill: #f0544f;
}


.checkbox-wrapper .check {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  stroke-dasharray: 22;
  animation: feedbackanimation 3s ease;
}

.checkbox-wrapper input[type="checkbox"] {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  margin: 0;
  opacity: 0;

}


@keyframes feedbackanimation {
  0% {
    stroke-dashoffset: 22;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

.sucessForm, .errorForm{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: #0B3660;
}

.sucessForm br, .errorForm br{
  margin-top: 40px;
}



@media screen and (max-width: 1440px) {
  .tituloInformacoesForm{
    font-size: 1.5rem;
  }

  .dadosInformacoesForm{
    font-size: 0.8rem;
  }
  #formHome #informacoesForm{
    width: 30%;
    margin-left: -50px;
  }

  #contatoForm #divBotaoForm{
    justify-content: center;
  }
  #contatoForm #botaoForm{
    width: 50%;
  }
  
}

@media screen and (max-width: 1126px) {
  #formHome #informacoesForm{
    padding-left: 70px;
    height: 90%;
  }

  #formHome #formInputs{
    height: fit-content;
  }

  #contatoForm{
    padding: 20px;
  }

  #contatoForm #caixadetexto{

    height: 150px !important;
  }
}


@media screen and (max-width: 1024px) {
  #formHome .col{
    flex-direction: column;
    height: 100%;
  }
 

  #formHome #informacoesForm{
    padding: 40px 20px 20px 20px;
    width: 100%;
    height: fit-content;
    margin: -30px 0 0 0;
    align-items: center;
    justify-content: center;
    max-width: none;

  }

  #formHome #formInputs{
    width: 90%;
  }

  #informacoesForm hr{
    display: none;
  }

  #informacoesForm ul{
    margin: 0 0 0 0;
    display: flex;
    align-items: start;
    height: fit-content;
  }
  #informacoesForm li{
    display: inline-block;
    margin: 0 20px 0 0;
  }

  #informacoesForm #redesForm{
    margin-right: 0;
  }

}

@media screen and (max-width: 768px) {
  #contatoForm .formField .formFieldComponent{
    width: 100%;
  }

  #formHome .row {
    padding: 20px 40px;
  }

  .tituloInformacoesForm{
    font-size: 2.5vw;
  }
  .dadosInformacoesForm{
    font-size: 1.8vw;
  }

  #informacoesForm #redesForm{
    text-align: center;
  }

  #redesForm a {
    font-size: larger;
    margin-right: 20px;
  }
  .errorForm{
    font-size: 4vw;
  }
}

@media screen and (max-width: 606px) {
  #informacoesForm img{
    transform: scale(1);
    width: 136px;
  }

  #contatoForm #divBotaoForm{
    height: fit-content;
  }

  #contatoForm #botaoForm{
    padding: 10px 15px;
    width: 30%;
  }

  .sucessForm{
    font-size: 30px;
  }
}


@media screen and (max-width: 450px) {
  #formHome .row {
    padding: 20px;
  }

  #contatoForm{
    width: 100% !important;
  }

  #contatoForm #botaoForm{
    width: 100%;
  }

  #informacoesForm{
    display: none !important;
  }

  .sucessForm{
    font-size: 6vw;
  }

  .errorForm{
    font-size: 4vw;
  }
}


@media screen and (max-width: 320px) {

  #formHome .row{
    height: fit-content;
    padding: 30px 20px;
  }

  #forHome .col{
    height: fit-content;
  }


  #informacoesForm{
    display: none !important;
  }

  #formHome #formInputs, #formHome #contatoForm{
    width: 100%;
  }
  #contatoForm .formField span{
    font-size: 14px;
    padding: 10px 15px;
  }
  .errorForm{
    font-size: 4.4vw;
  }
}