@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
* {
  color: inherit;
  margin: 0;
}

body {
  font-family: Poppins;
}

ul {
  padding: 0;
  list-style-type: none;
}

a {
  text-decoration: none;
}

hr {
  border: 0;
  border-top: 1px dotted #efefef;
}

img {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.row {
  display: flex;
  flex-flow: row wrap;
}

.gap-2 > * {
  padding: 20px;
}

.gap-2 {
  margin-left: -20px;
  margin-right: -20px;
}

.justify-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-direction-column {
  flex-direction: column;
}

.flex-gap-20 {
  gap: 20px;
}

@media (min-width: 0) {
  .col-2-xs {
    box-sizing: border-box;
    flex-grow: 0;
    width: 16.6666666667%;
  }
  .col-12-xs {
    box-sizing: border-box;
    flex-grow: 0;
    width: 100%;
  }
}
@media (min-width: 480px) {
  .col-2-sm {
    box-sizing: border-box;
    flex-grow: 0;
    width: 16.6666666667%;
  }
  .col-3-sm {
    box-sizing: border-box;
    flex-grow: 0;
    width: 25%;
  }
  .col-5-sm {
    box-sizing: border-box;
    flex-grow: 0;
    width: 41.6666666667%;
  }
  .col-6-sm {
    box-sizing: border-box;
    flex-grow: 0;
    width: 50%;
  }
  .col-12-sm {
    box-sizing: border-box;
    flex-grow: 0;
    width: 100%;
  }
}
@media (min-width: 720px) {
  .col-2-md {
    box-sizing: border-box;
    flex-grow: 0;
    width: 16.6666666667%;
  }
  .col-5-md {
    box-sizing: border-box;
    flex-grow: 0;
    width: 41.6666666667%;
  }
  .col-6-md {
    box-sizing: border-box;
    flex-grow: 0;
    width: 50%;
  }
  .col-10-md {
    box-sizing: border-box;
    flex-grow: 0;
    width: 83.3333333333%;
  }
  .col-12-md {
    box-sizing: border-box;
    flex-grow: 0;
    width: 100%;
  }
}
@media (min-width: 960px) {
  .col-2-lg {
    box-sizing: border-box;
    flex-grow: 0;
    width: 16.6666666667%;
  }
  .col-3-lg {
    box-sizing: border-box;
    flex-grow: 0;
    width: 25%;
  }
  .col-10-lg {
    box-sizing: border-box;
    flex-grow: 0;
    width: 83.3333333333%;
  }
  .col-12-lg {
    box-sizing: border-box;
    flex-grow: 0;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-1-xl {
    box-sizing: border-box;
    flex-grow: 0;
    width: 8.3333333333%;
  }
  .col-2-xl {
    box-sizing: border-box;
    flex-grow: 0;
    width: 16.6666666667%;
  }
  .col-3-xl {
    box-sizing: border-box;
    flex-grow: 0;
    width: 25%;
  }
  .col-4-xl {
    box-sizing: border-box;
    flex-grow: 0;
    width: 33.3333333333%;
  }
  .col-12-xl {
    box-sizing: border-box;
    flex-grow: 0;
    width: 100%;
  }
}

.font-consolas {
  font-family: Consolas, monaco, monospace;
}

.scrollbar-primary::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.scrollbar-primary::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

.scrollbar-primary::-webkit-scrollbar-thumb {
  background-color: #326dee;
}

.scrollbar-secondary::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.scrollbar-secondary::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

.scrollbar-secondary::-webkit-scrollbar-thumb {
  background-color: #1ac888;
}

.text-primary {
  color: #326dee;
}

.bg-primary {
  background-color: #326dee;
}

.bg-primary-light-2 {
  background-color: #5b8af1;
}

.bg-primary-light-4 {
  background-color: #84a7f5;
}

.bg-primary-light-6 {
  background-color: #adc5f8;
}

.bg-primary-light-8 {
  background-color: #d6e2fc;
}

.bg-primary-dark-2 {
  background-color: #2857be;
}

.bg-primary-dark-4 {
  background-color: #1e418f;
}

.bg-primary-dark-6 {
  background-color: #142c5f;
}

.bg-primary-dark-8 {
  background-color: #0a1630;
}

.text-secondary {
  color: #1ac888;
}

.text-hover-secondary:hover {
  color: #1ac888;
}

.bg-secondary {
  background-color: #1ac888;
}

.bg-secondary-light-9 {
  background-color: #e8faf3;
}

.text-error {
  color: #d32752;
}

.bg-error {
  background-color: #d32752;
}

.text-info {
  color: #f6c31c;
}

.bg-info {
  background-color: #f6c31c;
}

.text-blue {
  color: #1919e6;
}

.bg-blue {
  background-color: #1919e6;
}

.text-red {
  color: #e61919;
}

.bg-red {
  background-color: #e61919;
}

.text-yellow {
  color: #e6e619;
}

.bg-yellow {
  background-color: #e6e619;
}

.text-green {
  color: #19e635;
}

.bg-green {
  background-color: #19e635;
}

.text-orange {
  color: #ffa600;
}

.bg-orange {
  background-color: #ffa600;
}

.text-hover-orange-light-1:hover {
  color: #ffaf1a;
}

.text-purple {
  color: #90f;
}

.bg-purple {
  background-color: #90f;
}

.text-gray {
  color: grey;
}

.bg-gray {
  background-color: grey;
}

.bg-gray-light-7 {
  background-color: #d9d9d9;
}

.text-hover-black:hover {
  color: #000;
}

.text-white {
  color: #fff;
}

.text-hover-white:hover {
  color: #fff;
}

.card {
  display: block;
  padding: 0.75rem;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.card .card-title {
  font-size: 1.5rem;
  padding-bottom: 0.75rem;
  font-weight: 700;
}

.card .card-body {
  font-size: 1rem;
}

.card .card-body a {
  text-decoration: underline;
}

.btn {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  background-color: #e2e2e2;
}

.btn-sm {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.5rem 0.5rem;
  border-radius: 15px;
  background-color: #e2e2e2;
}

.btn-primary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  background-color: #326dee;
}

.btn-primary:hover {
  background-color: #4a7ef0;
}

.btn-complement-primary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  background-color: #326dee;
  color: #fae7bf;
}

.btn-complement-primary:hover {
  color: #326dee;
  background-color: #fae7bf;
}

.btn-sm-primary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.5rem 0.5rem;
  border-radius: 15px;
  background-color: #326dee;
}

.btn-sm-primary:hover {
  background-color: #4a7ef0;
}

.btn-sm-complement-primary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.5rem 0.5rem;
  border-radius: 15px;
  background-color: #326dee;
  color: #fae7bf;
}

.btn-sm-complement-primary:hover {
  color: #326dee;
  background-color: #fae7bf;
}

.btn-secondary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  background-color: #1ac888;
}

.btn-secondary:hover {
  background-color: #1ddf97;
}

.btn-outlined-secondary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #1ac888;
}

.btn-outlined-secondary:hover {
  background-color: #1ac888;
}

.btn-sm-secondary {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.5rem 0.5rem;
  border-radius: 15px;
  background-color: #1ac888;
}

.btn-sm-secondary:hover {
  background-color: #1ddf97;
}

.btn-error {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  background-color: #d32752;
}

.btn-error:hover {
  background-color: #da3961;
}

.btn-sm-error {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.5rem 0.5rem;
  border-radius: 15px;
  background-color: #d32752;
}

.btn-sm-error:hover {
  background-color: #da3961;
}

.btn-info {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  background-color: #f6c31c;
}

.btn-info:hover {
  background-color: #f7c935;
}

.btn-sm-info {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.5rem 0.5rem;
  border-radius: 15px;
  background-color: #f6c31c;
}

.btn-sm-info:hover {
  background-color: #f7c935;
}

.btn-outlined-orange {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #ffa600;
}

.btn-outlined-orange:hover {
  background-color: #ffa600;
}

.btn-sm-outlined-orange {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.5rem 0.5rem;
  border-radius: 15px;
  background-color: #fff;
  border: 1px solid #ffa600;
}

.btn-sm-outlined-orange:hover {
  background-color: #ffa600;
}

.btn-outlined-purple {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  background-color: #fff;
  border: 1px solid #90f;
}

.btn-outlined-purple:hover {
  background-color: #90f;
}

.btn-complement-purple {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.75rem 1.5rem;
  border-radius: 20px;
  background-color: #90f;
  color: #c2ff99;
}

.btn-complement-purple:hover {
  color: #90f;
  background-color: #c2ff99;
}

.btn-sm-outlined-purple {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.5rem 0.5rem;
  border-radius: 15px;
  background-color: #fff;
  border: 1px solid #90f;
}

.btn-sm-outlined-purple:hover {
  background-color: #90f;
}

.btn-sm-complement-purple {
  text-decoration: none;
  cursor: pointer;
  display: inline-block;
  border: 0;
  padding: 0.5rem 0.5rem;
  border-radius: 15px;
  background-color: #90f;
  color: #c2ff99;
}

.btn-sm-complement-purple:hover {
  color: #90f;
  background-color: #c2ff99;
}

.navbar, .navbar .container, .navbar-primary, .navbar-primary .container, .navbar-secondary, .navbar-secondary .container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.navbar, .navbar-primary, .navbar-secondary {
  padding: 0.75rem 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar .site-title, .navbar-primary .site-title, .navbar-secondary .site-title {
  font-size: 1.5rem;
}

.navbar-primary {
  background-color: #326dee;
}

.navbar-secondary {
  background-color: #1ac888;
}

.badge {
  border-radius: 80px;
  background-color: #326dee;
  padding: 0.1875rem 0.375rem;
  font-size: 0.75rem;
  font-weight: 400;
}

.badge-secondary {
  border-radius: 80px;
  background-color: #1ac888;
  padding: 0.1875rem 0.375rem;
  font-size: 0.75rem;
  font-weight: 400;
}

.badge-error {
  border-radius: 80px;
  background-color: #d32752;
  padding: 0.1875rem 0.375rem;
  font-size: 0.75rem;
  font-weight: 400;
}

.badge-info {
  border-radius: 80px;
  background-color: #f6c31c;
  padding: 0.1875rem 0.375rem;
  font-size: 0.75rem;
  font-weight: 400;
}

.badge-green {
  border-radius: 80px;
  background-color: #19e635;
  padding: 0.1875rem 0.375rem;
  font-size: 0.75rem;
  font-weight: 400;
}

.badge-outlined-green {
  border-radius: 80px;
  background-color: transparent;
  padding: 0.1875rem 0.375rem;
  font-size: 0.75rem;
  font-weight: 400;
  border: 1px solid #19e635;
}

.badge-purple {
  border-radius: 80px;
  background-color: #90f;
  padding: 0.1875rem 0.375rem;
  font-size: 0.75rem;
  font-weight: 400;
}

.badge-outlined-purple {
  border-radius: 80px;
  background-color: transparent;
  padding: 0.1875rem 0.375rem;
  font-size: 0.75rem;
  font-weight: 400;
  border: 1px solid #90f;
}

.toast-primary {
  display: block;
  padding: 0.75rem;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background-color: #326dee;
}

.toast-secondary {
  display: block;
  padding: 0.75rem;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background-color: #1ac888;
}

.toast-outlined-green {
  display: block;
  padding: 0.75rem;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border-color: #19e635;
}

.toast-outlined-purple {
  display: block;
  padding: 0.75rem;
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border-color: #90f;
}

input[type=text i].form-input {
  border: 1px solid grey;
  border-radius: 5px;
  height: 1.75rem;
  width: 100%;
  line-height: 1.3333333333rem;
}

input[type=text i].form-input:focus-visible {
  box-shadow: 0 0 0 4px rgba(128, 128, 128, 0.1);
  outline: 0;
}

input[type=checkbox].form-input {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 1.5px solid grey;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

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

input[type=checkbox].form-input:focus {
  box-shadow: 0 0 0 4px rgba(128, 128, 128, 0.1);
}

input[type=checkbox].form-input:disabled {
  color: grey;
  cursor: not-allowed;
}

input[type=checkbox].form-input:disabled::before {
  box-shadow: inset 1em 1em grey;
}

input[type=text i].form-input-primary {
  border: 1px solid #326dee;
  border-radius: 5px;
  height: 1.75rem;
  width: 100%;
  line-height: 1.3333333333rem;
}

input[type=text i].form-input-primary:focus-visible {
  box-shadow: 0 0 0 4px rgba(50, 109, 238, 0.1);
  outline: 0;
}

input[type=text i].form-input-primary-focus:focus-visible {
  box-shadow: 0 0 0 4px rgba(50, 109, 238, 0.1);
}

input[type=checkbox].form-input-primary {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 1.5px solid grey;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

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

input[type=checkbox].form-input-primary:focus {
  box-shadow: 0 0 0 4px rgba(50, 109, 238, 0.1);
}

input[type=checkbox].form-input-primary:disabled {
  color: grey;
  cursor: not-allowed;
}

input[type=checkbox].form-input-primary:disabled::before {
  box-shadow: inset 1em 1em grey;
}

input[type=checkbox]:checked.form-input-primary::before {
  transform: scale(1);
}

input[type=checkbox].form-input-primary-outline {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 1.5px solid #326dee;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

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

input[type=checkbox].form-input-primary-outline:focus {
  box-shadow: 0 0 0 4px rgba(50, 109, 238, 0.1);
}

input[type=checkbox].form-input-primary-outline:disabled {
  color: grey;
  cursor: not-allowed;
}

input[type=checkbox].form-input-primary-outline:disabled::before {
  box-shadow: inset 1em 1em grey;
}

input[type=checkbox]:checked.form-input-primary-outline::before {
  transform: scale(1);
}

input[type=text i].form-input-secondary {
  border: 1px solid #1ac888;
  border-radius: 5px;
  height: 1.75rem;
  width: 100%;
  line-height: 1.3333333333rem;
}

input[type=text i].form-input-secondary:focus-visible {
  box-shadow: 0 0 0 4px rgba(26, 200, 136, 0.1);
  outline: 0;
}

input[type=text i].form-input-secondary-focus:focus-visible {
  box-shadow: 0 0 0 4px rgba(26, 200, 136, 0.1);
}

input[type=checkbox].form-input-secondary {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 1.5px solid grey;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

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

input[type=checkbox].form-input-secondary:focus {
  box-shadow: 0 0 0 4px rgba(26, 200, 136, 0.1);
}

input[type=checkbox].form-input-secondary:disabled {
  color: grey;
  cursor: not-allowed;
}

input[type=checkbox].form-input-secondary:disabled::before {
  box-shadow: inset 1em 1em grey;
}

input[type=checkbox]:checked.form-input-secondary::before {
  transform: scale(1);
}

input[type=checkbox].form-input-secondary-outline {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 1.5px solid #1ac888;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

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

input[type=checkbox].form-input-secondary-outline:focus {
  box-shadow: 0 0 0 4px rgba(26, 200, 136, 0.1);
}

input[type=checkbox].form-input-secondary-outline:disabled {
  color: grey;
  cursor: not-allowed;
}

input[type=checkbox].form-input-secondary-outline:disabled::before {
  box-shadow: inset 1em 1em grey;
}

input[type=checkbox]:checked.form-input-secondary-outline::before {
  transform: scale(1);
}

input[type=text i].form-input-error {
  border: 1px solid #d32752;
  border-radius: 5px;
  height: 1.75rem;
  width: 100%;
  line-height: 1.3333333333rem;
}

input[type=text i].form-input-error:focus-visible {
  box-shadow: 0 0 0 4px rgba(211, 39, 82, 0.1);
  outline: 0;
}

input[type=text i].form-input-error-focus:focus-visible {
  box-shadow: 0 0 0 4px rgba(211, 39, 82, 0.1);
}

input[type=checkbox].form-input-error {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 1.5px solid grey;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

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

input[type=checkbox].form-input-error:focus {
  box-shadow: 0 0 0 4px rgba(211, 39, 82, 0.1);
}

input[type=checkbox].form-input-error:disabled {
  color: grey;
  cursor: not-allowed;
}

input[type=checkbox].form-input-error:disabled::before {
  box-shadow: inset 1em 1em grey;
}

input[type=checkbox]:checked.form-input-error::before {
  transform: scale(1);
}

input[type=checkbox].form-input-error-outline {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 1.5px solid #d32752;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

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

input[type=checkbox].form-input-error-outline:focus {
  box-shadow: 0 0 0 4px rgba(211, 39, 82, 0.1);
}

input[type=checkbox].form-input-error-outline:disabled {
  color: grey;
  cursor: not-allowed;
}

input[type=checkbox].form-input-error-outline:disabled::before {
  box-shadow: inset 1em 1em grey;
}

input[type=checkbox]:checked.form-input-error-outline::before {
  transform: scale(1);
}

input[type=text i].form-input-info {
  border: 1px solid #f6c31c;
  border-radius: 5px;
  height: 1.75rem;
  width: 100%;
  line-height: 1.3333333333rem;
}

input[type=text i].form-input-info:focus-visible {
  box-shadow: 0 0 0 4px rgba(246, 195, 28, 0.1);
  outline: 0;
}

input[type=text i].form-input-info-focus:focus-visible {
  box-shadow: 0 0 0 4px rgba(246, 195, 28, 0.1);
}

input[type=checkbox].form-input-info {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 1.5px solid grey;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

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

input[type=checkbox].form-input-info:focus {
  box-shadow: 0 0 0 4px rgba(246, 195, 28, 0.1);
}

input[type=checkbox].form-input-info:disabled {
  color: grey;
  cursor: not-allowed;
}

input[type=checkbox].form-input-info:disabled::before {
  box-shadow: inset 1em 1em grey;
}

input[type=checkbox]:checked.form-input-info::before {
  transform: scale(1);
}

input[type=checkbox].form-input-info-outline {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 1.5px solid #f6c31c;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

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

input[type=checkbox].form-input-info-outline:focus {
  box-shadow: 0 0 0 4px rgba(246, 195, 28, 0.1);
}

input[type=checkbox].form-input-info-outline:disabled {
  color: grey;
  cursor: not-allowed;
}

input[type=checkbox].form-input-info-outline:disabled::before {
  box-shadow: inset 1em 1em grey;
}

input[type=checkbox]:checked.form-input-info-outline::before {
  transform: scale(1);
}

input[type=text i].form-input-green {
  border: 1px solid #19e635;
  border-radius: 5px;
  height: 1.75rem;
  width: 100%;
  line-height: 1.3333333333rem;
}

input[type=text i].form-input-green:focus-visible {
  box-shadow: 0 0 0 4px rgba(25, 230, 53, 0.1);
  outline: 0;
}

input[type=checkbox].form-input-green {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 1.5px solid grey;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

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

input[type=checkbox].form-input-green:focus {
  box-shadow: 0 0 0 4px rgba(25, 230, 53, 0.1);
}

input[type=checkbox].form-input-green:disabled {
  color: grey;
  cursor: not-allowed;
}

input[type=checkbox].form-input-green:disabled::before {
  box-shadow: inset 1em 1em grey;
}

input[type=checkbox]:checked.form-input-green::before {
  transform: scale(1);
}

input[type=checkbox].form-input-green-outline {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 1.5px solid #19e635;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

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

input[type=checkbox].form-input-green-outline:focus {
  box-shadow: 0 0 0 4px rgba(25, 230, 53, 0.1);
}

input[type=checkbox].form-input-green-outline:disabled {
  color: grey;
  cursor: not-allowed;
}

input[type=checkbox].form-input-green-outline:disabled::before {
  box-shadow: inset 1em 1em grey;
}

input[type=checkbox]:checked.form-input-green-outline::before {
  transform: scale(1);
}

input[type=text i].form-input-purple {
  border: 1px solid #90f;
  border-radius: 5px;
  height: 1.75rem;
  width: 100%;
  line-height: 1.3333333333rem;
}

input[type=text i].form-input-purple:focus-visible {
  box-shadow: 0 0 0 4px rgba(153, 0, 255, 0.1);
  outline: 0;
}

input[type=checkbox].form-input-purple {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 1.5px solid grey;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

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

input[type=checkbox].form-input-purple:focus {
  box-shadow: 0 0 0 4px rgba(153, 0, 255, 0.1);
}

input[type=checkbox].form-input-purple:disabled {
  color: grey;
  cursor: not-allowed;
}

input[type=checkbox].form-input-purple:disabled::before {
  box-shadow: inset 1em 1em grey;
}

input[type=checkbox]:checked.form-input-purple::before {
  transform: scale(1);
}

input[type=checkbox].form-input-purple-outline {
  appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 1.5px solid #90f;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
}

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

input[type=checkbox].form-input-purple-outline:focus {
  box-shadow: 0 0 0 4px rgba(153, 0, 255, 0.1);
}

input[type=checkbox].form-input-purple-outline:disabled {
  color: grey;
  cursor: not-allowed;
}

input[type=checkbox].form-input-purple-outline:disabled::before {
  box-shadow: inset 1em 1em grey;
}

input[type=checkbox]:checked.form-input-purple-outline::before {
  transform: scale(1);
}

.floating-label-text {
  font-size: 12.5px;
  color: #000;
  opacity: 0.8;
  font-weight: 400;
}

.floating-label {
  position: relative;
  margin-bottom: 10px;
}

.floating-label label {
  position: absolute;
  top: calc(50% - 7px);
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.floating-label input:not(:placeholder-shown) + label {
  transform: translateY(-35px);
  opacity: 0.7;
}

.p-0 {
  padding: 0;
}

.pl-2 {
  padding-left: 1.5rem;
}

.pr-2 {
  padding-right: 1.5rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pt-4 {
  padding-top: 4.5rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-2 {
  padding-bottom: 1.5rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 4.5rem;
}

.m-1 {
  margin: 0.75rem;
}

.ml-1 {
  margin-left: 0.75rem;
}

.ml-2 {
  margin-left: 1.5rem;
}

.mt-1 {
  margin-top: 0.75rem;
}

.mt-2 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 4.5rem;
}

.mt-5 {
  margin-top: 6rem;
}

.mb-2 {
  margin-bottom: 1.5rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4.5rem;
}

.w-100 {
  width: 100%;
}

.br {
  border-radius: 20px;
}

.display-f {
  display: flex;
}

.font-sm {
  font-size: 0.75rem;
}

.font-md {
  font-size: 1rem;
}

.font-lg {
  font-size: 1.5rem;
}

.font-xl {
  font-size: 2rem;
}

.font-xxl {
  font-size: 3rem;
}

.overflow-y-scroll {
  overflow-y: scroll;
}