
        
        .form-container {
            display: flex;
            flex-wrap: wrap;
        }

        .form-left,
        .form-right {
            flex: 1;
            padding: 20px;
        }

        .form-left {
            border-right: 1px solid #ddd;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            font-size: 14px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }

        .step-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 20px;
        }

        .step-buttons button {
            padding: 10px 20px;
            border: none;
            border-radius: 4px;
            background-color: #007bff;
            color: #fff;
            font-size: 16px;
            cursor: pointer;
        }

        .step-buttons button:disabled {
            background-color: #ccc;
        }

        .step {
            display: none;
        }

        .step.active {
            display: block;
        }


        /* Specific styling for mobile input group */
        .mobile-input-group {
            display: flex;
            align-items: center;
        }

        .mobile-input-group input {
            flex: 0 0 80%;
            /* Takes up 80% of the width */
            margin-right: 10px;
            /* Optional: Add some space between the input and button */
        }

        .mobile-input-group button {
            flex: 0 0 20%;
            /* Takes up 20% of the width */
        }

        /* Specific styling for email input group */
        .email-input-group {
            display: flex;
            align-items: center;
        }

        .email-input-group input {
            flex: 0 0 80%;
            /* Takes up 80% of the width */
            margin-right: 10px;
            /* Optional: Add some space between the input and button */
        }

        .email-input-group button {
            flex: 0 0 20%;
            /* Takes up 20% of the width */
        }