    * {
      box-sizing: border-box;
    }

    body {
      font-family: 'Rubik', sans-serif;
      background-color: #e8e8ed;
      margin: 0;
      padding: 10px;
    }

    .title {
      background: #007bff;
      color: #fff;
      padding: 1rem 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 800px;
      padding: 20px;
      max-width: 800px;
      margin: auto;
      border-radius: 20px 20px 0 0;

    }

    .checkbox-group {
      text-align: center;
      display: flex;
    }

    .title h1 {
      font-size: 32px;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 0;
    }

    .title h1 a {
      color: #fff;
      text-decoration: none;
      transition: color 0.3s ease, text-shadow 0.3s ease;
    }

    .title h1 a:hover {
      text-shadow: 0 0 8px rgba(255, 255, 255, 0.7);
    }

    .title .subtitle {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .title i {
      font-size: 22px;
    }

    .title h2 {
      font-size: 24px;
      font-weight: 600;
      text-transform: uppercase;
    }

    form {
      background: #fff;
      padding: 20px;
      max-width: 800px;
      margin: auto;
      border-radius: 10px;
      box-shadow: 0 0 10px #ccc;
      border-radius: 0 0 20px 20px;
    }

    h2 {
      text-align: center;
      font-size: 1.5rem;
      /* background-color: #6457c9; */
      color: white;
      padding: 10px;
      border-radius: 5px;
    }

    label {
      display: block;
      margin-top: 15px;
      font-weight: bold;
    }

    .horizontal-list input {
      width: 6%;
    }

    input,
    select {
      width: 100%;
      padding: 10px;
      margin-top: 5px;
      border-radius: 5px;
      border: 1px solid #ccc;
      font-family: 'Rubik', sans-serif;

    }

    .input-group {
      position: relative;
    }

    .toggle-password {
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
    }

    .name-grid {
      display: grid;
      grid-template-columns: repeat(1, 1fr);
      gap: 10px;
    }

    .horizontal-list {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 10px;
      margin-top: 10px;
    }

    .horizontal-list label {
      display: flex;
      align-items: center;
      gap: 8px;
      background-color: #f4f4f9;
      padding: 8px 10px;
      border-radius: 6px;
      border: 1px solid #ccc;
      cursor: pointer;
      transition: background-color 0.2s ease;
    }

    .horizontal-list label:hover {
      background-color: #eaeaff;
    }

    .error {
      color: red;
      font-size: 0.9rem;
    }

    select option {
      font-family: 'Rubik', sans-serif;
    }

    button {
      font-family: 'Rubik', sans-serif;
      font-size: 4rem;
      margin-top: 20px;
      width: 100%;
      padding: 12px;
      background-color: #007bff;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      cursor: pointer;
    }

    .address-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 10px;
    }

    .text-center {
      text-align: center;
      margin-top: 1rem;
    }

    .text-center a {
      text-decoration: none;
    }

    @media (max-width: 600px) {
      .address-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .name-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }