@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
body {
  font-family: Poppins, sans-serif;
  margin: 0;
}

input, button {
  font-family: Poppins, sans-serif;
}
input:not([type="checkbox"]) {
  font-size: 14px;
  background-color: #E8DEC4;
  border: none;
  width: 100% !important;
  height: 46px !important;
  padding-left: 24px;
  font-size: 16px;
}
.iti--allow-dropdown {
  flex: 1;
}
.sms-consent {
  display: flex;
  gap: 6px;
  width: 100%;
  padding-top: 8px;
}
*:focus {
  outline: none;
}
::-webkit-input-placeholder {
  color: rgba(0,0,0,0.5);
}

::-moz-placeholder {
  color: rgba(0,0,0,0.5);
}

::-ms-placeholder {
  color: rgba(0,0,0,0.5);
}

::placeholder {
  color: rgba(0,0,0,0.5);
}

button {
  font-size: 14px;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
  font-weight: 800;
  color: #E8DEC4;
  background-color: #5E5D5A;
  border: none; /*1px solid #fff;*/
  height: 46px;
  padding: 0 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -1px;
}
button:hover {
  cursor: pointer;
}

.fields-container {
  display: flex;
  width: 100%;
}

h2 {
  margin: 0;
  font-size: 20px;
}
p {
  margin: 0;
}

input[type="checkbox"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 0;

  font: inherit;
  color: #ffffff;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid #ffffff;
  border-radius: 0.15em;
  transform: translateY(-0.075em);

  display: grid;
  place-content: center;
}

input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em #ffffff;
}

input[type="checkbox"]:checked::before {
  transform: scale(1);
}