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%;
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  justify-content: center;
  height: 70%;
  align-items: center;
  margin-bottom: 50px;
}

/* BOTÃO SOLICITAR */

.btn,
.btn:link,
.btn:visited {
  display: inline-block;

  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  padding: 1.6rem 3.2rem;
  border-radius: 9px;

  /* 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;
}

/* BOTÃO SOLICITAR */
.btn--form {
  background-color: #ac8a50;
  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: #ddb46d;
  color: #fdf2e9;
}
