body{
  margin: 0;
  padding: 4%;
  box-sizing: border-box;
  font-family: "Space Grotesk", sans-serif;
  background-position-x: -420px;
  background-position-y: -120px;
  background-image: url(/assets/Slice-1-desk.webp);
  min-height: 100vh;
}

.container{
  max-width: 1000px;
  margin-inline: auto;
  background-color: #F8F8F8;
  padding: 2% 5%;
  border-top: 2px solid #2B612D;
  border-radius: 10px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0,1);
  display: flex;
  justify-content: space-between;
}

p{
  max-width: 450px;
}

.buttons-links{
  background-color: #E4F4E4;
  display: flex;
  align-items: center;
  gap: 15px;
  width: 72%;
  border-radius: 8px;
  padding: 8px;
}

.btn{
  padding: 10px 45px;
  background-color: #2B612D;
  border-radius: 5px;
  border: none;
  color: #FFF;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  cursor: pointer;
}

.btn-contrato{
  background-color: transparent;
  color: #2B612D;
  text-decoration: none;
}

.container-texto{
  width: 50%;
}

.container-form{
  width: 50%;
}

.endereco-um{
  display: flex;
  gap: 50px;
}

.endereco-dois{
  display: flex;
  gap: 50px;
}

.div{
  width: 25%;
}

label{
  display: block;
  margin: 10px 0 5px;
  font-weight: 500;
  font-size: 14px;
}

input, select {
  width: 96%;
  padding: 8px;
  border: 1px solid #CCC;
  border-radius: 5px;
}

.functions-btn{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

fieldset {
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 18px;
}

.check{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: start;
}

.check label{
  width: 90%;
}

.check input {
  width: 10%;
  margin-left: -14px;
  margin-top: 7px;
}

.btn-filho{
  padding: 10px 45px;
  background-color: #F8F8F8;
  border-radius: 5px;
  border: 1px solid #2B612D;
  color: #2B612D;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  cursor: pointer;
  margin-top: 10px;
  transition: all 0.4s;
}

.btn-filho:hover{
  background-color: #2B612D;
  color: #FFF;
}

@media (max-width: 768px) {
  body{
    background-image: url(/assets/Slice-1-mobi.webp);
    background-position-x: -5px;
  }

  .container{
    flex-direction: column;
  }

  .container-texto{
    width: 100%;
  }
  
  .container-form{
    width: 100%;
  }

  .buttons-links{
    gap: 5px;
    width: 95%;
    border-radius: 8px;
    padding: 8px;
  }
  
  .btn{
    padding: 6px 30px;
  }

  .btn-filho{
    padding: 8px 35px;
  }

  h1{
    font-size: 28px;
  }

  p{
    font-size: 14px;
  }

  input {
    width: 93.5%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  select{
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .endereco-um, .endereco-dois{
    flex-direction: column;
    gap: 0;
  }

  .div{
    width: 100%;
  }

  .functions-btn{
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
  }

  .check input{
    margin-left: -5px;
  }
}