      body {
        margin: 0;
        font-family: 'Inter', sans-serif;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
        background: #1C1C1C;
      }

      a {
        text-decoration: none;
      }

      .full-width {
        width: 100%;
        display: flex;
        justify-content: center;
      }

      .container {
        width: 100%;
        max-width: 1440px;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
      }

      header,
      footer {
        width: 100%;
        background-color: #1c1c1c;
        color: #fff;
        display: flex;
        justify-content: center;
      }

      .header-content {
        width: 100%;
        max-width: 1440px;
        display: flex;
        align-items: center;
      }

      .footer-content {
        width: 100%;
        max-width: 1440px;
        display: flex;
        align-items: center;
        box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
      }

      .header-nav {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0 0 0 24px;
      }

      .footer-nav {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 3px 0 3px 24px;
        min-height: 116px;
      }

      .header-nav .logo,
      .footer-nav .logo {
        margin-right: 32px;
        height: 100%;
        justify-content: flex-start;
        align-items: center;
        gap: 8px;
        display: inline-flex;
      }

      .header-nav nav {
        display: flex;
        margin-right: auto;
      }

      .header-nav nav ul,
      .footer-nav nav ul {
        display: inline;
        display: flex;
      }

      .footer-nav nav ul:first-of-type {
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        padding-inline-start: 0;
      }

      .header-nav nav li,
      .footer-nav nav li {
        list-style: none;
      }

      .footer-nav .logo,
      .footer-nav .second-logo {
        margin: 0 20px;
      }

      .footer-nav .logo {
        margin-right: auto;
      }

      .footer-nav .second-logo {
        justify-content: flex-start;
        align-items: center;
        gap: 24px;
        display: flex;
      }

      .footer-nav nav a {
        color: #EDEDED;
        text-decoration: none;
      }

      .footer-text-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-grow: 1;
        flex-wrap: wrap;

      }

      .footer-text-nav nav {
        display: flex;
        justify-content: center;
        list-style: none;
        padding: 0;
        margin: 0;
        font-size: 16px;
      }

      nav li {
        margin-right: 32px;
      }

      nav a {
        color: #A0A0A0;
        text-decoration: none;
      }

      nav a:active,
      a:hover {
        color: #fff;
        text-decoration: none;
      }

      .footer-text {
        text-align: center;
        margin-left: 20px;
      }

      .main {
        width: 100%;
        display: flex;
        justify-content: center;
        background-color: #161616;
        flex: 1;
      }

      .main-content {
        display: flex;
        flex-wrap: nowrap;
        max-width: 1440px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }

      .main-content h1 {
        color: #fff;
        font-size: 24px;
      }


      .text {
        flex: 1 1 40%;
        min-width: 200px;
        margin: 60px 40px 0 40px;
        color: rgba(237, 237, 237, 0.80);
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        word-wrap: break-word
      }

      .primary-green {
        color: #4CC38A;
      }

      .additional-content {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
      }

      .additional-content-inner {
        width: 100%;
        max-width: 1440px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px;
      }

      .additional-content-inner h2 {
        color: #fff;
      }

      .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
      }

      .box {
        width: 232px;
        height: 264px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 16px;
        color: #333;
      }

      div.box-inner-btm:hover {
        border-radius: 4px;
        border: 1px solid #4CC38A;
        background: rgba(42, 254, 190, 0.14);
        cursor: pointer;
        width: 230px;
        height: 154px;
        text-decoration: none;
      }

      div.box-inner-btm>div>*>a {
        color: #4CC38A;
        text-decoration: none;
        font-size: 14px;
        font-family: Inter;
        font-weight: 600;
        line-height: 21px;
        word-wrap: break-word;
      }

      .box-inner-btm {
        width: 232px;
        height: 156px;
        background: #282828;
        box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
        border-bottom-left-radius: 12px;
        border-bottom-right-radius: 12px;
        overflow: hidden;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10px;
        display: flex
      }

      .box-inner-top.placeholders {
        background: #6053BD;
      }

      .box-inner-top.upload {
        background: #BDAE53;
      }

      .box-inner-top.onboard {
        background: #53ABBD;
      }

      .box-inner-top {
        box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
        width: 232px;
        height: 108px;
        border-top-left-radius: 12px;
        border-top-right-radius: 12px;
        overflow: hidden;
        justify-content: center;
        align-items: center;
        display: inline-flex
      }

      @media (max-width: 800px) {
        .main-content {
          flex-direction: column;
        }

        .image {
          margin-right: 0;
          margin-bottom: 20px;
          max-width: 100%;
        }

        .text {
          min-width: 0;
        }

        .footer-nav {
          flex-direction: column;
          align-items: center;
        }

        .footer-nav .second-logo {
          margin-left: 0;
          margin-top: 10px;
        }

        .footer-text-nav {
          flex-direction: column;
          align-items: center;
          margin-top: 10px;
        }

        .footer-text-nav nav {
          flex-direction: column;
          align-items: center;
        }

        .footer-text {
          margin-left: 0;
          margin-top: 10px;
        }

        .logo-text {
          font-family: Clash Display;
          font-size: 14px;
          font-weight: 600;
          line-height: 36.75px;
          letter-spacing: 0.33px;
          white-space: nowrap;
        }
      }
        div.step-item {
          padding-left: 24px;
          padding-right: 24px;
          padding-top: 16px;
          padding-bottom: 16px;
          justify-content: flex-start;
          align-items: flex-start;
          gap: 16px;
          display: inline-flex;
        }

        div.heading {
          height: 216px;
          width: 1440px;
          background: url(../images/header_onboarding.webp) 50% / cover no-repeat;
          padding-top: 16px;
          padding-bottom: 16px;
          box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.30), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
          flex-direction: column;
          justify-content: center;
          align-items: center;
          gap: 10px;
          display: flex;
          /*margin: 52px 0 0 0;*/
          *margin: 0;
        }

        div.heading h1 {
          color: #EDEDED;
          font-feature-settings: 'clig' off, 'liga' off;
          font-family: Inter;
          font-size: 48px;
          font-style: normal;
          font-weight: 700;
          line-height: 150%;
          letter-spacing: 0.96px;
        }

        div.step-items {
          width: 1024px;
          padding: 48px 0 12px 0;
          box-shadow: 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
          border-radius: 8px;
          flex-direction: column;
          justify-content: flex-start;
          align-items: center;
          gap: 20px;
          display: inline-flex;
        }

        .form-row {
          margin-bottom: 20px;
          border-bottom: 1px #ededed;
        }

        .text-row {
          display: flex;
          gap: 10px;
        }
   
        .text-row input:focus,
        .form input:focus {
          border-bottom: 1px solid #4CC38A;
        }

        .text-row input,
        .form-row input {
          flex: 1;
          padding: 10px;
          border-radius: 4px;
          border-bottom: 1px solid #7E7E7E;
          border-right: 0px solid #4CC38A;
          background: #232323;
          color: #EDEDED;
        }

        input:-internal-autofill-selected {
          background: #232323;
          color: #EDEDED;
        }

        .add-user-btn,
        .submit-btn,
        .download-btn,
        .remove-user-btn {
          padding: 10px 20px;
          background-color: #62FFB3BD;
          color: #000;
          border: none;
          border-radius: 5px;
          cursor: pointer;
          margin-right: 10px;
        }

        .add-user-btn,
        .remove-user-btn {
          background-color: rgba(42, 254, 190, 0.1);
          color: #62FFB3BD;
        }

        .add-user-btn:hover,
        .download-btn:hover,
        .remove-user-btn:hover {
          background-color: #62FFB3BD;
          color:#000;
        }

        #userForm p,
        h2,
        h3,
        h4,
        label {
          color: #EDEDED;
        }
        
        .email {
          font-size: 18px;
          font-style: normal;
          font-weight: 600;
          line-height: 150%;
          text-decoration: underline;
        }
        .email.green {
          color: #4CC38A;
        }

        #userForm h4,
        label {
          font-feature-settings: 'liga' off, 'clig' off;
          font-family: Inter;
          font-size: 14px;
          font-style: normal;
          font-weight: 400;
          line-height: 150%;
          letter-spacing: 0.14px;
        }

        .step-item * div>p {
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: 150%;
        }

        .step-item .inner p {
          font-size: 18px;
          font-style: normal;
          font-weight: 400;
          line-height: 150%;
          margin: 8px 0 18px 0;
        }

        #userForm input:checked {
          background-color: #62FFB3BD;
        }

        input[type="radio"]::before {
          content: "";
          width: 0.65em;
          height: 0.65em;
          border-radius: 50%;
          transform: scale(0);
          transition: 120ms transform ease-in-out;
          box-shadow: inset 1em 1em #62FFB3BD;
        }

        input[type="radio"] {
          appearance: none;
          -webkit-appearance: none;
          -moz-appearance: none;
          width: 16px;
          height: 16px;
          border: 2px solid #62FFB3BD;
          border-radius: 50%;
          position: relative;
          cursor: pointer;
          padding: 4px;
          margin: -3px 10px;
        }

        input[type="radio"]::before {
          content: '';
          border-radius: 50%;
          background-color: #62FFB3BD;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          opacity: 0;
          transition: opacity 0.2s ease;
        }

        input[type="radio"]:checked::before {
          opacity: 1;
        }

        #userForm input[type="radio" i] {
          background-color: #1C1C1C;
        }

        p {
          margin: 8px 0;
          color: #EDEDED;
          font-size: 18px;
          font-family: Inter;
          font-weight: 400;
          line-height: 27px;
          word-wrap: break-word
        }

        .step {

          color: #C0EAD1;
          font-size: 18px;
          font-family: Inter;
          font-weight: 600;
          line-height: 27px;
          word-wrap: break-word;
          margin-top: 8px;
        }

        .step-number {

          width: 60px;
          height: 93px;
          color: #C0EAD1;
          font-size: 96px;
          font-weight: 600;
          line-height: 144px;
          word-wrap: break-word;
        }

        span.sprocket {

          margin: 4px 10px 0 0;
        }
        button.submit-btn {
          margin:15px 0 0 0;
        }
