* {
  scrollbar-width: auto;
  scrollbar-color: #f9f0bf #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0
}


*::-webkit-scrollbar {
  width: 13px
}

*::-webkit-scrollbar-track {
  background: #fff
}

*::-webkit-scrollbar-thumb {
  background-color: #dfdedf;
  border-radius: 10px;
  border: 3px solid #fff
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}


body {
  margin: 0;
  font-family: "gotham", sans-serif;
  background-color: #fff;
}


main {
  display: block;
}


h1 {
  font-size: 2em;
  margin: 0.67em 0;
}



hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}


pre {
  font-family: monospace, monospace;
  font-size: 1em;
}


a {
  background-color: transparent;
}


abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}


b,
strong {
  font-weight: bolder;
}


code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}


button,
input {
  overflow: visible;
}


button,
select {
  text-transform: none;
}


button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[hidden] {
  display: none;
}

.garnier_loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 80px 0;
  text-align: center;
  font-size: 18px;
  color: #fc65ac;
  gap: 12px
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #fc65ac;
  border-right-color: rgba(0, 0, 0, 0);
  border-radius: 50%;
  -webkit-animation: spin .8s linear infinite;
  animation: spin .8s linear infinite
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}


.garnier_form {
  background: #fff;
  padding: 73px 0px 30px;
  max-width: 810px;
  margin: 0 auto;
}

.row {
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}

.field {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 16px;
  font-weight: 400;
  padding-top: 2px;
}

.field input {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 8px 5px;
  font-size: 16px;
  outline: none;
  background: transparent;
  color: #3b3b3b;
  font-weight: 400;
}

.field input:focus {
  border-bottom: 1px solid #f7931e !important;
  transform: scaleY(1.1);

}

.checkboxes {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 0px;
  text-align: justify;
}

.checkLine {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 6px;
  font-size: 11px;
  line-height: 14px;
  color: #000;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.checkLine a {
  text-decoration: underline;
  font-size: 11px;
  line-height: 14px;
  color: #000;
  font-weight: 500
}

@media(max-width: 768px) {
  .checkLine a {
    display: contents
  }
}

.checkLine input {
  display: none;
}

.checkLine .fake {
  width: 17px;
  height: 17px;
  background: #fff;
  border: 1px solid #d4d4d4;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-top: -1px
}

.checkLine input:checked+.fake::after {
  content: "";
  position: absolute;
  top: 3px;
  right: 3px;
  bottom: 3px;
  left: 3px;
  background: #f7931e;
  outline: none;
}

.btn-cadastrar {
  background: #f7931e;
  color: #fff;
  border: none;
  padding: 10px 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.btn-cadastrar:hover {
  background: #f9f0bf;
  color: #f7931e;
}

.row-button {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
    /* Los campos se apilan */
    gap: 0;
  }

  .field {
    width: 100%;
    /* Que ocupen todo el ancho */
    padding: 0;
  }

  .garnier_form {
    padding: 15px;
    padding-top: 40px;
  }

  .btn-cadastrar {
    width: 100%;
    /* Botón ocupa todo en móvil */
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .field label {
    font-size: 13px;
  }

  .btn-cadastrar {
    font-size: 14px;
    padding: 10px;
  }
}

.error {
  display: inline-block;
  color: #e73040;
  margin: 8px 0 0;
  text-align: left;
  font-size: 12px;
  line-height: 1.2;
  min-height: 18px;
}

.minCheck {
  padding: 2px 0 8px 24px;
  min-height: 0px !important;
  margin-top: 0;
}

.term {
  color: #000;
  text-decoration: underline;
}