.sign-up-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 20px;
    background-color: #f4f4f5;
  }

  /* Logo */
  .brand-logo {
    position: absolute;
    top: 40px;
    left: 40px;
    display: flex;
    align-items: center;
    gap: 3px;
  }
  
  .logo-icon {
    width: 100px;
  }

  .logo-text {
    font-size: 20px;
    color: #18181b;
    font-family: "Zen Dots", sans-serif;
  }

  /* Content Block */
  .content-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 1280px;
  }

  /* Card */
  .card {
    background-color: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.06), 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 768px;
    overflow: hidden;
  }

  .card-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* Header */
  .card-header-1 {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .title {
    font-size: 24px;
    font-weight: 600;
    color: #09090b;
    line-height: 32px;
  }

  .subtitle {
    font-size: 14px;
    color: #71717a;
    line-height: 20px;
  }

  /* Form */
  .signup-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .form-row {
    display: flex;
    flex-direction: row;
    gap: 24px;
    width: 100%;
  }

  .input-group {
    display: flex;
    flex-direction: column;
    /* gap: 8px; */
    flex: 1;
    width: 100%;
    position: relative;
  }

  .input-label {
    font-size: 14px;
    font-weight: 500;
    color: #09090b;
    line-height: 14px;
  }

  .text-input {
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #e4e4e7;
    border-radius: 6px;
    font-size: 14px;
    color: #18181b;
    background-color: #ffffff;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
  }

  .text-input::placeholder {
    color: #71717a;
  }

  .text-input:focus {
    border-color: #09090b;
  }

  /* Custom Select Trigger */
  .select-trigger {
    height: 40px;
    padding: 8px 12px;
    border: 1px solid #e4e4e7;
    border-radius: 6px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
  }

  .select-trigger .placeholder {
    font-size: 14px;
    color: #71717a;
  }

  .chevron-icon {
    width: 16px;
    height: 16px;
  }

  /* Buttons */
  .btn-primary {
    height: 40px;
    background-color: #18181b;
    color: #fafafa;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
  }

  .btn-primary:hover {
    opacity: 0.9;
  }

  /* Divider */
  .divider-container {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
  }

  .divider-line {
    flex: 1;
    height: 1px;
    background-color: #e4e4e7;
  }

  .divider-text {
    font-size: 12px;
    color: #71717a;
    background-color: #ffffff;
    padding: 0 8px;
  }

  /* Social Buttons */
  .social-buttons {
    display: flex;
    gap: 16px;
  }

  .btn-social {
    flex: 1;
    height: 40px;
    background-color: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 200px;
  }

  .btn-social:hover {
    background-color: #f4f4f5;
  }

  .btn-social img {
    width: 16px;
    height: 16px;
  }

  /* Login Link */
  .login-link {
    display: flex;
    justify-content: center;
    font-size: 14px;
    color: #09090b;
    a:link, a:hover, a:visited {
      color: inherit;
      text-decoration: none;
      font-weight: lighter;
    }
  }

  .login-link strong {
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
  }

  /* Footer Terms */
  .footer-terms {
    font-size: 14px;
    color: #71717a;
    text-align: center;
    a:link, a:hover, a:visited {
      color: #71717a;
      text-decoration: underline;
    }
  }

  

  /* Password requirements tooltip */
  .password_div {
    display: none;
    position: fixed;
    left: calc(100% + 16px);
    top: 0;
    width: 280px;
    text-align: left;
    color: #18181b;
    background-color: #ffffff;
    border: 1px solid #e4e4e7;
    border-radius: 8px;
    padding: 16px;
    font-size: 12px;
    box-shadow: 0px 8px 25px -5px rgba(0, 0, 0, 0.1), 0px 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 9999;
  }

  .password_div:before {
    content: "";
    position: absolute;
    right: 100%;
    top: 20px;
    border: 8px solid transparent;
    border-right-color: #e4e4e7;
  }

  .password_div:after {
    content: "";
    position: absolute;
    right: 100%;
    top: 21px;
    border: 7px solid transparent;
    border-right-color: #ffffff;
  }

  .password_div strong {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #09090b;
  }

  .password_div span {
    display: block;
    margin-bottom: 4px;
    line-height: 1.4;
  }

  .password_div span:last-child {
    margin-bottom: 0;
  }

  /* Password input with icon spacing */
  .input-group .text-input[type="password"],
  .input-group #password {
    padding-right: 40px;
  }
  
  /* Ensure password wrapper takes full width */
  .input-group > div[style*="position: relative"],
  .input-group > div {
    width: 100%;
  }

  /* Password visibility toggle button */
  .btn-show-password {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #71717a;
    border-radius: 3px;
    transition: color 0.2s, background-color 0.2s;
    z-index: 10;
  }

  .btn-show-password:hover {
    color: #18181b;
    background-color: rgba(244, 244, 245, 0.8);
  }

  .btn-show-password i {
    font-size: 14px;
    pointer-events: none;
  }

  /* Responsive */
  @media (max-width: 768px) {
    
    .brand-logo {
      position: static;
      margin-bottom: 24px;
    }

    .form-row {
      flex-direction: column;
      gap: 24px;
    }

    .card {
      max-width: 100%;
    }
    
    .card-content {
      padding: 24px;
    }

    /* Password tooltip responsive positioning */
    .password_div {
      position: absolute;
      left: 0;
      right: 0;
      top: calc(100% + 8px);
      width: auto;
      margin: 0;
      z-index: 9999;
    }

    .password_div:before {
      right: auto;
      left: 20px;
      top: -16px;
      border-right-color: transparent;
      border-bottom-color: #e4e4e7;
    }

    .password_div:after {
      right: auto;
      left: 21px;
      top: -14px;
      border-right-color: transparent;
      border-bottom-color: #ffffff;
    }
  }

  .button-container {
    display: flex;
    justify-content: center;
    align-items: center;

    .btn-primary {
        padding: 10px 20px;
        width: 50%;
    }
  }

  .brand-text {
    font-family: 'Zen Dots', cursive;
  }