  @import url('https://fonts.cdnfonts.com/css/poppins');
  @import url('https://fonts.cdnfonts.com/css/h-hias-sans');

  :root {
      --FF-primary: 'Poppins', sans-serif;
      --FF-secondary: 'h Hias Sans', sans-serif;

      --CL-primary-purple: #5d3af9;
      --CL-primary-blue: #1d1c4d;
      --CL-primary-cyan: #2effff;
      --CL-primary-green: #3af999;
      --CL-primary-red: #ff2e7e;
      --CL-primary-dark-gray: #002230;

      --CL-neutral-white: #ffffff;
      --CL-neutral-black: #000000;
  }

  *,
  *::after,
  *::before {
      box-sizing: border-box;
  }

  * {
      margin: 0;
      padding: 0;
  }

  html,
  body {
      height: 100%;
  }

  body {
      font-family: var(--FF-primary);
      margin: 0;
  }

  svg,
  img {
      max-width: 100%;
  }

  .container {
      max-width: 1600px;
      margin: 0 auto;
  }

  .logo {
      max-width: 5em;
  }

  .text-center {
      text-align: center;
  }

  .h-100 {
      height: 100%;
  }

  /* Header */
  .header {
      padding: 2em 0;
  }

  .h1 {
      font-size: 2rem;
      line-height: 1.1;
  }

  /* Form Styles */

  .form {
      width: min(100%, 27em);
      height: 38em;
      background-color: var(--CL-neutral-white);
      padding: 1em;
      margin: 0 auto;
      display: grid;
      position: relative;
      box-shadow: 0 0px 3px var(--CL-neutral-black);
      height: 100%;
  }

  .form-progress-container {
      margin: 0.5rem 0 0 0;
  }

  .form-steps {
      display: flex;
      justify-content: space-around;
  }

  .form-step {
      width: 30px;
      height: 30px;
      border: 2px solid #ccc;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #fff;
      font-weight: bold;
  }

  .form-step.active {
      background-color: var(--CL-primary-purple);
      color: #fff;
      border-color: var(--CL-primary-purple);
  }

  .progress-bar {
      height: 10px;
      background-color: #ccc;
      margin-top: 10px;
  }

  .progress-indicator {
      height: 100%;
      background-color: var(--CL-primary-purple);
      width: 0;
      transition: width 0.3s ease-in-out;
  }

  .form-page {
      padding: 1em;
      border-radius: 0.5rem;
      gap: 1em;
  }

  .form-page-visible {
      display: grid;
  }

  .form-page-hide {
      display: none;
  }

  .form-number {
      margin: 0 auto;
      font-size: 2.75rem;
      font-weight: bold;
  }

  .form-title {
      text-align: center;
      margin: 0;
      display: grid;
      place-items: center;
      font-size: 1.2rem;
      line-height: 1.1;
  }

  .form-subtitle {
      font-style: italic;
  }

  .form-group {
      display: inherit;
  }

  .form-label,
  .form-item {
      font-size: 1rem;
      font-family: var(--FF-primary);
  }

  .form-select {
      width: 100%;
  }

  .form-image {
      width: 225px;
      height: 225px;
      margin: auto;
      border-radius: 100%;
      object-fit: contain;
      outline: 3px solid var(--CL-primary-dark-gray);
  }

  .form-document {
      border-radius: 0;
      width: 300px;
      height: 225px;
  }

  .form-upload-text {
      display: flex !important;
      place-items: center;
      justify-content: center;
      gap: 0.5em;
      background-color: var(--CL-primary-blue);
      font-weight: bold !important;
      text-transform: uppercase;
      border-radius: 2rem;
      cursor: pointer !important;
      transition: 0.15s;
      padding: 0.5em 0;
      color: var(--CL-neutral-white) !important;
  }

  .form-upload-file {
      display: none;
  }

  .form-item {
      padding: 0.3em 0.75em;
  }

  .form-actions {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5em;
      margin: 0.75em 0 0 0;
  }

  /* Buttons */

  .btn-b {
      cursor: pointer;
      font-weight: 600;
      max-height: 3em;
      width: 7.5em;
      border: none;
      transition: 0.2s;
        padding-right: 20px;
        padding-left: 20px;
        padding-top: 8px;
        padding-bottom: 8px;

  }

  .btn-next {
      background-color: var(--CL-primary-purple);
      color: var(--CL-neutral-white);
  }

  .btn-next:hover {
      background-color: var(--CL-primary-dark-gray);
  }

  .btn-return {
      color: var(--CL-neutral-white);
      background-color: var(--CL-primary-red);
  }

  .btn-return:hover {
      background-color: var(--CL-primary-dark-gray);
  }

  .btn-submit {
      background-color: var(--CL-primary-blue);
      color: var(--CL-neutral-white);
  }

  .btn-submit:hover {
      transform: translateX(0.5em);
  }

  @media (min-width: 768px) {
      .main {
          padding: 1em;
      }

      /* Form */

      .form {
          border-radius: 1rem;
      }

      .form-page {
          padding: 1em 2em;
      }

      .form-title {
          font-size: 1.25rem;
      }
  }