.fill-white {
    filter: brightness(0) invert(1);
  }

  .font.primary {
    font-family: var(--font-primary);
  }

  .btn {
    border-radius: 8px;
  }

  .text.gray-200 {
    color: var(--color-gray-200);
  }

  .text-gray-300 {
    color: var(--color-gray-300);
  }

  .text-navy {
    color: var(--color-navy-200) !important;
  }

  .text-gray-400 {
    color: var(--color-gray-400);
  }

  .bg.navy {
    background-color: var(--color-navy-200);
  }

  .bg.light-gray {
    background-color: var(--color-light-gray);
  }

  .font-bolder {
    font-weight: 600;
  }

  .heading.h3 {
    font-size: 28px;
  }

  .heading.h4 {
    font-size: 24px;
  }

  .heading.h5 {
    font-size: 20px;
  }

  .heading.h6 {
    font-size: 16px;
  }

  .text.input {
    font-size: 16px;
  }

  .text.button-text {
    font-size: 18px;
  }

  .text-underline-position-under {
    text-underline-position: under;
  }

  .center {
    min-height: 100vh;
    display: grid;
    place-items: center;
  }

  .full-screen {
    min-height: 100vh;
  }

  .form-wrapper {
    background-color: var(--color-gray-100);
    width: min(100%, 1056px);
    border-radius: 8px;
    box-shadow: 3.6285715103149414px 1.8142857551574707px 2px 0px rgba(20, 66, 114, 0.1);
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: var(--gap, 3rem);
  }

  .checkbox-large {
    --offset: 16px;
    width: calc(var(--offset) - 1px);
    height: var(--offset);
  }

  .rounded-8 {
    border-radius: 8px;
  }

  .rounded-20 {
    border-radius: 20px;
  }

  .btn-outline-navy {
    border: 1px solid var(--color-navy-200);
  }

  .border-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    border: 2px solid transparent;
    border-radius: inherit;
    z-index: 1;
  }

  input[type="radio"]:checked ~ .border-line,
  input[type="checkbox"]:checked ~ .border-line {
    border: 2px solid var(--color-navy-200);
  }

  .logo-vector {
    user-select: none;
    pointer-events: none;
    z-index: -1;
  }
  .logo-vector.bottom {
    bottom: 0;
    right: 0;
  }
  .logo-vector.top {
    top: 0;
    left: 0;
  }

  @media (max-width: 400px) {
    .logo-vector {
      width: 40%;
    }
  }

  .z-index-1 {
    z-index: 1;
  }

  .cursor-pointer {
    cursor: pointer;
  }

  .btn-link:focus, .language-select select:focus {
    box-shadow: none;
  }

  .no-scrollbar::-webkit-scrollbar {
    width: 0;
    height: 0;
    background: transparent;
  }
