
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
        }

        body {
            background-color: #fafafa;
            min-height: 100vh;
        }

        .signup-container {
            display: flex;
            width: 100%;
        }
        
        .right-side {
            width: 70%;
            display: block;
            height: 100vh;
            position: relative;
        }

        /* Left Section */
        .brand-section {
            background-color: #fafafa;
            flex-direction: column;
            position: relative;
            overflow: hidden;
            width: 30%;
            overflow: visible;
        }
        .main-div-section-form {
            height: auto;
            width: 100%;
            position: relative;
            background-color: #fff;
            border-radius: 5%;
            min-height: 100vh;
        }

        .logo-section {
            position: absolute;
            top: 30%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: inline-block;
            width: auto;
            text-align: center; 
            z-index: 999;
        }
        .sitename {
            font-size: 3rem;
            color: #12141D;
            text-align: center;
            display: block;
            width: 100%;
        }
        .sitename span {
            color: #729BF0;
        }

        .logo {
            width: 100px;
            margin-bottom: 0px;
        }

        .wave-bg {
            position: absolute;
            left: 0;
            width: 150%;
            top: 20vh;
            bottom: 0;
            margin: auto 0;
            z-index: 2;
        }

        .form-label {
            margin-bottom: 10px;
            font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
            font-size: 16px;
            color: #7D8592;
        }

        /* Right Section */
        .form-section {
            position: relative;
            left: 0;
            right: 0;
            padding: 40px;
            max-width: 500px;
            margin: 0 auto;
            background-color: #fff;
            border-radius: 20px;
            width: calc(100% - 40px); /* Accounts for padding */
            padding-top: 10vh;
        }

        h1 {
            font-size: 32px;
            margin-bottom: 30px;
            color: #000;
            font-weight: 600;
        }

        .social-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .social-button {
            flex: 1;
            padding: 12px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .social-button:hover {
            background-color: #f5f5f5;
        }

        .social-button img {
            width: 20px;
            height: 20px;
        }

        .divider {
            display: flex;
            align-items: center;
            margin: 20px 0;
            color: #666;
            font-size: 14px;
        }

        .divider::before,
        .divider::after {
            content: "";
            flex: 1;
            height: 1px;
            background: #e0e0e0;
            margin: 0 10px;
        }

        .form-group {
            margin-bottom: 30px;
        }

        input {
            width: 100%;
            padding: 15px;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            font-size: 16px;
            transition: border-color 0.3s;
        }

        input:focus {
            outline: none;
            border-color: #6C8EF2;
        }

        .password-input {
            position: relative;
        }

        .password-toggle {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
            color: #666;
        }

        .create-account-btn {
            width: 100%;
            padding: 15px;
            background-color: #6C8EF2;
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .create-account-btn:hover {
            background-color: #5A7DE0;
        }

        .login-link {
            text-align: center;
            margin-top: 20px;
            color: #7D8592;
        }

        .login-link a {
            color: #6C8EF2;
            text-decoration: none;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .signup-container {
                flex-direction: column;
            }

            .brand-section {
                padding: 20px;
                min-height: 200px;
            }

            .form-section {
                padding: 20px;
            }

            .logo {
                width: 150px;
            }

            .social-buttons {
                flex-direction: column;
            }
        }

        .stats-item, .purpose-item  {
          background-color: white;
          border-radius: 8px;
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
          padding: 20px;
          text-align: center;
          cursor: pointer;
          transition: transform 0.3s ease-in-out;
          margin-bottom: 20px;
        }

        .stats-item.selected, .purpose-item.selected {
          /*transform: scale(1.05);*/
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
          border: 1px solid #6C8EF2;
        }
        .stats-item.selected p, .purpose-item.selected p {
        }

        .stats-item h3, .purpose-item h3 {
          font-size: 18px;
          margin-bottom: 10px;
        }

        .stats-item p, .purpose-item p {
          font-size: 14px;
          color: #91929E;
        }

        /* Media queries for responsiveness */
        @media (max-width: 768px) {
          .stats-container {
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
          }
        }
