html {
  /* font-size: 10px; */

  /* 10px / 16px = 0.625 = 62.5% */
  /* Percentage of user's browser font-size setting */
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  line-height: 1;
  font-weight: 400;
  color: #555;

  /* Only works if there is nothing absolutely positioned in relation to body */
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  height: 70%;
  align-items: center;
}

.container-formulario {
  width: 100%;
padding: 50px 5%;
  display: block;
  justify-content: center;
  height: 70%;
  align-items: center;

}

/* BOTÃO SOLICITAR */

.btn,
.btn:link,
.btn:visited { 
  background-color: #768a96;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 400;
  padding: 0.8rem 1.2rem;
  border-radius: 9px;
  color: #fdf2e9;

  /* Only necessary for .btn */
  border: none;
  cursor: pointer;
  font-family: inherit;

  /* Put transition on original "state" */
  /* transition: background-color 0.3s; */
  transition: all 0.3s;
}

.btn,
.btn:hover,
.btn:active {
background-color: #44576d;
}

.button-container {
 text-align: center;
  }



/* BOTÃO SOLICITAR */
.btn--form {
  background-color: #44576d;
  color: #fdf2e9;
  align-self: end;
  padding: 1rem;
  width: 460px; /* Largura desejada */
  height: 50px; /* Altura desejada */
  margin-left: 20px;
  margin-right: 15px;
}

.btn--form:hover {
  background-color: #44576d;
  color: #fdf2e9;
}
