.lgpd {

      position          : fixed;

      width             : 100%;

      bottom            : 0;

      padding           : 20px;

      /* background     : #5180E0; */

      background        : #000;

      color             : #FFF;

      font-size         : 15px;

      display           : flex;

      justify-content   : center;

      align-items       : center;



}



.lgpd a {

      color: #fab900 !important;

}



.lgpd button {

      background-color: #fab900 !important;

      border          : 0;

      border-radius   : 5px;

      color           : #FFF;

      cursor          : pointer;

      margin-left     : 1rem;

}


.form-field {
  display: flex;
  align-items: center;
  position: relative;
}
.form-field input[type=checkbox] {
  position: absolute;
  height: 25px;
  width: 25px;
  top: 0;
  opacity: 0;
}
.form-field input[type=checkbox]:focus ~ span {
  outline: -webkit-focus-ring-color auto 5px;
}
.form-field input[type=checkbox]:checked ~ span::after {
  display: block;
}
.form-field span {
  height: 14px;
  width: 14px;
  margin: 4px;
  border: 3px solid #fab900;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  pointer-events: none;
}
.form-field span::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 4px;
  height: 10px;
  width: 4px;
  border: solid #fab900;
  border-width: 0px 2px 2px 0px;
  transform: rotate(45deg);
  display: none;
}
.form-field label {
  color: #122226;
  font-family: "Merriweather", serif;
}